Skip to content

Instantly share code, notes, and snippets.

@thephucit
Created February 24, 2020 08:06
Show Gist options
  • Select an option

  • Save thephucit/8620f862a7a2b38ff13d3debde4fc8bc to your computer and use it in GitHub Desktop.

Select an option

Save thephucit/8620f862a7a2b38ff13d3debde4fc8bc to your computer and use it in GitHub Desktop.
# export postgres db
pg_dump -p [post] -U [username] -h [host] -d [db_name] > dbexport.pgsql
# import postgres db
psql -p [post] -U [username] -h localhost [dbname] < dbexport.pgsql
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment