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 difftool
> 使用外部差异工具显示文件更改。接受与 `git diff` 相同的选项和参数。
> 另见:`git diff`。
> 更多信息:<https://git-scm.com/docs/git-difftool>。
- 列出可用的差异工具:
`git difftool --tool-help`
- 将默认差异工具设置为 meld
`git config --global diff.tool "{{meld}}"`
- 使用默认差异工具显示暂存的更改:
`git difftool --staged`
- 使用特定工具 (opendiff) 显示自给定提交以来的更改:
`git difftool --tool={{opendiff}} {{commit}}`