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

@@ -1,16 +1,16 @@
# git pull
> 从远程代码库拉取分支并将其合并到本地代码库。
> 更多信息:<https://git-scm.com/docs/git-pull>.
> 从远程仓库获取分支并将其合并到本地库。
> 更多信息:<https://git-scm.com/docs/git-pull>
- 从默认远程分支中拉取代码并执行合并:
- 从默认远程仓库下载更改并合并:
`git pull`
- 使用快进功能(快进到含义为:先清空暂存区,再执行合并,最后恢复暂存区),从默认远程分支拉取代码并执行合并
- 从默认远程仓库下载更改并使用快进
`git pull --rebase`
-定的分支中拉取代码,并执行合并到对应分支
-定的远程仓库和分支下载更改然后将其合并到HEAD
`git pull {{远程分支名}} {{本地分支名}}`
`git pull {{remote_name}} {{branch}}`