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,24 @@
# git mktree
> 使用 `ls-tree` 格式化文本构建树对象。
> 更多信息请访问:<https://git-scm.com/docs/git-mktree>。
- 构建一个树对象,并验证每个树条目的哈希是否标识一个现有对象:
`git mktree`
- 允许缺失对象:
`git mktree --missing`
- 读取以 NUL[z]ero 字符)终止的树对象输出(`ls-tree -z`
`git mktree -z`
- 允许创建多个树对象:
`git mktree --batch`
-`stdin` 排序并构建树(需要非递归的 `git ls-tree` 输出格式):
`git mktree < {{path/to/tree.txt}}`