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,21 @@
# git commit-tree
> 低级实用工具,用于创建提交对象。
> 另见:`git commit`。
> 更多信息:<https://git-scm.com/docs/git-commit-tree>。
- 使用指定的消息创建提交对象:
`git commit-tree {{tree}} -m "{{message}}"`
- 从文件中读取消息以创建提交对象(使用 `-` 表示标准输入):
`git commit-tree {{tree}} -F {{path/to/file}}`
- 创建一个 GPG 签名的提交对象:
`git commit-tree {{tree}} -m "{{message}}" --gpg-sign`
- 使用指定的父提交对象创建提交对象:
`git commit-tree {{tree}} -m "{{message}}" -p {{parent_commit_sha}}`