Skip to content

Commit

Permalink
Fix typo in backup documentation (pgdump->pg_dump) (#20913)
Browse files Browse the repository at this point in the history
This PR fixes a small typo in the backup documentation: `pgdump` command is wrong, the correct name for the backup software in PostgreSQL is `pg_dump`
  • Loading branch information
Enrico204 committed Aug 22, 2022
1 parent 9d6a203 commit 502f752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/content/doc/usage/backup-and-restore.en-us.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ The SQL dump created by `gitea dump` uses XORM and Gitea admins may prefer to us
# mysql
mysqldump -u$USER -p$PASS --database $DATABASE > gitea-db.sql
# postgres
pgdump -U $USER $DATABASE > gitea-db.sql
pg_dump -U $USER $DATABASE > gitea-db.sql
```

### Using Docker (`dump`)
Expand Down

0 comments on commit 502f752

Please sign in to comment.