Skip to content

Instantly share code, notes, and snippets.

@matteocrippa
Created April 23, 2013 09:41
Show Gist options
  • Select an option

  • Save matteocrippa/5442206 to your computer and use it in GitHub Desktop.

Select an option

Save matteocrippa/5442206 to your computer and use it in GitHub Desktop.
Mysql Backup & Restore
# BACKUP
mysqldump -u root -p<pass> <dbname> > <dbname>.sql
# RESTORE
mysql -u root -p<pass> <dbname> < <dbname>.sql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment