Skip to content

Commit cc93254

Browse files
Enrico204Sysoev, Vladimir
authored and
Sysoev, Vladimir
committed
Fix typo in backup documentation (pgdump->pg_dump) (go-gitea#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`
1 parent 33ab4d6 commit cc93254

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/content/doc/usage/backup-and-restore.en-us.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ The SQL dump created by `gitea dump` uses XORM and Gitea admins may prefer to us
6262
# mysql
6363
mysqldump -u$USER -p$PASS --database $DATABASE > gitea-db.sql
6464
# postgres
65-
pgdump -U $USER $DATABASE > gitea-db.sql
65+
pg_dump -U $USER $DATABASE > gitea-db.sql
6666
```
6767

6868
### Using Docker (`dump`)

0 commit comments

Comments
 (0)