386 B
386 B
git pull
从远程仓库获取分支并将其合并到本地仓库。 更多信息:https://git-scm.com/docs/git-pull。
- 从默认远程仓库下载更改并合并:
git pull
- 从默认远程仓库下载更改并使用快进:
git pull --rebase
- 从指定的远程仓库和分支下载更改,然后将其合并到HEAD:
git pull {{remote_name}} {{branch}}