Fix typo in backup documentation (pgdump->pg_dump) (#20913)

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`
This commit is contained in:
Enrico 2022-08-22 20:39:59 +02:00 committed by GitHub
parent 9d6a2034bc
commit 502f7526d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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`)