Skip to content

Instantly share code, notes, and snippets.

@ChriRas
Created November 6, 2014 10:49
Show Gist options
  • Save ChriRas/2bf699e03145f2238907 to your computer and use it in GitHub Desktop.
Save ChriRas/2bf699e03145f2238907 to your computer and use it in GitHub Desktop.
Mysql Backup and restore
To backup:
mysqldump -u user -p DATABASE > backup.sql
To import:
mysql -u user -p DATABASE < backup.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment