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 blame
> 显示文件每行的提交哈希和最后作者。
> 更多信息:<https://git-scm.com/docs/git-blame>。
- 打印文件,每行显示作者名和提交哈希:
`git blame {{path/to/file}}`
- 打印文件,每行显示作者邮箱和提交哈希:
`git blame {{-e|--show-email}} {{path/to/file}}`
- 在特定提交下打印文件,每行显示作者名和提交哈希:
`git blame {{commit}} {{path/to/file}}`
- 在特定提交之前打印文件,每行显示作者名和提交哈希:
`git blame {{commit}}~ {{path/to/file}}`