From 48f8e5ee77436ed76f43bf4a95efef5ae134107a Mon Sep 17 00:00:00 2001 From: Enrico Date: Mon, 22 Aug 2022 18:19:28 +0200 Subject: [PATCH] Fix typo in backup documentation (pgdump->pg_dump) --- docs/content/doc/usage/backup-and-restore.en-us.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/doc/usage/backup-and-restore.en-us.md b/docs/content/doc/usage/backup-and-restore.en-us.md index c9c41c413c771..cae097082e1e2 100644 --- a/docs/content/doc/usage/backup-and-restore.en-us.md +++ b/docs/content/doc/usage/backup-and-restore.en-us.md @@ -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`)