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 合并
> 合并分支。
> 更多信息:<https://git-scm.com/docs/git-merge>。
- 将一个分支合并到当前分支:
`git merge {{branch_name}}`
- 编辑合并消息:
`git merge --edit {{branch_name}}`
- 合并一个分支并创建一个合并提交:
`git merge --no-ff {{branch_name}}`
- 在发生冲突时中止合并:
`git merge --abort`
- 使用特定策略进行合并:
`git merge --strategy {{strategy}} --strategy-option {{strategy_option}} {{branch_name}}`