git fetch 遠程分支

來源:互聯網
上載者:User

打算把github上的一個分支取到本地,直接輸入命令:

git checkout origin/A

結果出錯:

error: pathspec 'origin/feature_renrendai_tongji' did not match any file(s) known to git.

看到http://stackoverflow.com/questions/5989592/git-cannot-checkout-branch-error-pathspec-did-not-match-any-files-kn,

有了如下方法:

先執行git fetch, 從github上取回新的資訊放到本地倉庫中,比如哦我要取的那個分支在本地並沒有這個資訊,執行git branch -a 發現並沒有那個分支,執行git fetch後就有了,

然後執行

git checkout -b A origin/A

就把遠端A取回,並切換到本地的A分支。

不過,貌似下面這條命令就可以完成取伺服器上的資訊,並且建立分支A,把伺服器上的分支A取回的操作:

git checkout -t -b A origin/A

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.