Skip to content

Instantly share code, notes, and snippets.

@hcosta
Last active July 31, 2016 15:04
Show Gist options
  • Save hcosta/b361f7dff87a8ef80d8d to your computer and use it in GitHub Desktop.
Save hcosta/b361f7dff87a8ef80d8d to your computer and use it in GitHub Desktop.
import/export mysql db
mysqldump -h localhost -u user_name -p your_database_name (your_table_name_optative) > dump_file.sql
mysql -u your_user -p your_database < dump_file.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment