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

View File

@@ -0,0 +1,20 @@
# git checkout-index
> 从索引复制文件到工作树。
> 更多信息:<https://git-scm.com/docs/git-checkout-index>。
- 恢复自上次提交以来删除的任何文件:
`git checkout-index --all`
- 恢复自上次提交以来删除或更改的任何文件:
`git checkout-index --all --force`
- 恢复自上次提交以来更改的任何文件,忽略任何已删除的文件:
`git checkout-index --all --force --no-create`
- 将上次提交时的整个树导出到指定目录(后面的斜杠很重要):
`git checkout-index --all --force --prefix={{path/to/export_directory/}}`