add new chinese translations
This commit is contained in:
@@ -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}}`
|
Reference in New Issue
Block a user