add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

24
pages.zh/common/git-gc.md Normal file
View File

@@ -0,0 +1,24 @@
# git gc
> 通过清理不必要的文件来优化本地仓库。
> 更多信息:<https://git-scm.com/docs/git-gc>。
- 优化仓库:
`git gc`
- 进行激进优化,耗时更长:
`git gc --aggressive`
- 不清理松散对象(默认会清理):
`git gc --no-prune`
- 抑制所有输出:
`git gc --quiet`
- 显示帮助:
`git gc --help`