Skip to content

Instantly share code, notes, and snippets.

@veelenga
Created December 10, 2015 10:48
Show Gist options
  • Save veelenga/ea8ee0b5eefbf49766ae to your computer and use it in GitHub Desktop.
Save veelenga/ea8ee0b5eefbf49766ae to your computer and use it in GitHub Desktop.
Import/export mysql db

Create db dump:

mysqldump -u user -p db_name > db_name.sql

Restore db dump:

mysql -u user -p db_name < db_name.sql

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment