git pull 命令用于從遠程獲取代碼并合并本地的版本。 git pull 其實就是 git fetch 和 git merge FETCH_HEAD 的簡寫。 命令格式如下: git pull <遠程主機名> <遠程分支名>:<本地分支名>
實例更新操作: $ git pull
$ git pull origin
將遠程主機 origin 的 master 分支拉取過來,與本地的 brantest 分支合并。 git pull origin master:brantest
如果遠程分支是與當(dāng)前分支合并,則冒號后面的部分可以省略。 git pull origin master
上面命令表示,取回 origin/master 分支,再與本地的 brantest 分支合并。 上面的 pull 操作用 fetch 表示為: 以我的 https://github.com/tianqixin/runoob-git-test 為例,遠程載入合并本地分支。 $ git remote -v # 查看信息
origin https://github.com/tianqixin/runoob-git-test (fetch)
origin https://github.com/tianqixin/runoob-git-test (push)
$ git pull origin master
From https://github.com/tianqixin/runoob-git-test
* branch master -> FETCH_HEAD
Already up to date.
上面命令表示,取回 origin/master 分支,再與本地的 master 分支合并。 |
|