Answer the question
In order to leave comments, you need to log in
How to transfer MySql database via git?
Hello everyone, please tell me how to synchronize the database between members of the development team?
Answer the question
In order to leave comments, you need to log in
There are many ways to solve this problem, in general, you can exchange a dump, it is only important to agree on a single way to do a dump, I recommend:
MYSQL_PWD=pass mysqldump \
-uUSER -hHOST \
--compact \
--add-drop-table \
--extended-insert=FALSE \
db_name > dump.sql
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question