mirror of
				https://gitee.com/gitea/gitea
				synced 2025-11-04 16:40:24 +08:00 
			
		
		
		
	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:
		@@ -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`)
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user