开发者

Is there a convenient way to include a mysqldump in my git commits?

Especially if I'm using GitHub? If not, should I (or perhaps开发者_运维技巧 someone else) work on such a tool?


add a script that dumps the sql file someplace specific to your project (but inside the project directory).

mysqldump -uroot -p my_db > my_project/my_db.sql

it is juts text so git will pick that file up as changed just like any other. so then just

git add my_db.sql
git commit -m "the schema changed"
git push my_project github master

you may consider the following:

  • putting your dump file on github or adding it to the repo means any data there is available for anyone to see, like passwords and usernames so obviously, use fake data.
  • you may want to look at the mysqldump options to only dump the schema and not the data http://dev.mysql.com/doc/refman/5.1/en/mysqldump.html


I think the current best practice is to pull production-data from the production-system into a developer-database and test with this. Distributing data over VCS bears the risk that this data differs to much from real data.

If you mean to just distribute the current database-schema: Frameworks such as RoR have migrations for that which update the database schema incrementally.

Anyway, it's just a matter of putting the dump-file into VCS and importing it every time you pull a new version, so I don't really see the need of a tool for that.


The output of mysqldump is a simple text file.

Each time you change your database, call mysqldump to the same file. Then commit it to your repository as you commit your code.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜