If this is recommended ?
Can I ask some git command examples about how to track versions of mysql schema?
Should we use another repository other then the on
If you're just tracking the schema, put all of the CREATE statements into one .sql file, and add the file to git.
$> mkdir myschema && cd myschema $> git init $> echo "CREATE TABLE ..." > schema.sql $> git add schema.sql $> git commit -m "Initial import"