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,36 @@
# git 注释
> 添加或检查对象注释。
> 更多信息:<https://git-scm.com/docs/git-notes>。
- 列出所有注释及其附加的对象:
`git notes list`
- 列出附加到指定对象的所有注释(默认为 HEAD
`git notes list [{{对象}}]`
- 显示附加到指定对象的注释(默认为 HEAD
`git notes show [{{对象}}]`
- 将注释附加到指定对象(打开默认文本编辑器):
`git notes append {{对象}}`
- 将注释附加到指定对象,并指定消息:
`git notes append --message="{{消息文本}}"`
- 编辑现有注释(默认为 HEAD
`git notes edit [{{对象}}]`
- 从一个对象复制注释到另一个对象:
`git notes copy {{源对象}} {{目标对象}}`
- 移除附加到指定对象的所有注释:
`git notes remove {{对象}}`