小男孩‘自慰网亚洲一区二区,亚洲一级在线播放毛片,亚洲中文字幕av每天更新,黄aⅴ永久免费无码,91成人午夜在线精品,色网站免费在线观看,亚洲欧洲wwwww在线观看

分享

git pull 命令 | 菜鳥(niǎo)教程

 長(zhǎng)幸福lZg 2022-05-25 發(fā)布于山西


git pull 命令用于從遠(yuǎn)程獲取代碼并合并本地的版本。

git pull 其實(shí)就是 git fetchgit merge FETCH_HEAD 的簡(jiǎn)寫(xiě)。

命令格式如下:

git pull <遠(yuǎn)程主機(jī)名> <遠(yuǎn)程分支名>:<本地分支名>

實(shí)例

更新操作:

$ git pull
$ git pull origin

將遠(yuǎn)程主機(jī) origin 的 master 分支拉取過(guò)來(lái),與本地的 brantest 分支合并。

git pull origin master:brantest

如果遠(yuǎn)程分支是與當(dāng)前分支合并,則冒號(hào)后面的部分可以省略。

git pull origin master

上面命令表示,取回 origin/master 分支,再與本地的 brantest 分支合并。

上面的 pull 操作用 fetch 表示為:

以我的 https://github.com/tianqixin/runoob-git-test 為例,遠(yuǎn)程載入合并本地分支。

$ 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 分支合并。



    本站是提供個(gè)人知識(shí)管理的網(wǎng)絡(luò)存儲(chǔ)空間,所有內(nèi)容均由用戶發(fā)布,不代表本站觀點(diǎn)。請(qǐng)注意甄別內(nèi)容中的聯(lián)系方式、誘導(dǎo)購(gòu)買等信息,謹(jǐn)防詐騙。如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請(qǐng)點(diǎn)擊一鍵舉報(bào)。
    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評(píng)論

    發(fā)表

    請(qǐng)遵守用戶 評(píng)論公約

    類似文章 更多