Git拉取遠端分支到本地

jilei786發表於2018-12-07

Git拉取遠端分支到本地

拉取分支

首先你得先檢視你是否和遠端的倉庫建立連線。

git remote -v
複製程式碼

如果沒有的話那就自行新增一下

git remote add origin  xxxx(你遠端分支的git倉庫地址)
複製程式碼

如果每天要提交程式碼 ,可以繞過上面這一步,直接切換分支

git checkout -b Q3 origin/Q3
複製程式碼

這個時候操作失敗提示如下:

  • fatal: 'origin/Q3' is not a commit and a branch 'Q3' cannot be created from it 代表你本地沒有Q3這個遠端分支。

可以執行 git branch -r 來檢查本地是否有Q3遠端分支。 拉取遠端分支到本地並切換分支。

git fetch origin Q3
git checkout -b Q3 origin/Q3
複製程式碼

拉取遠端分支到本地

git pull origin Q3
複製程式碼

我的部落格和github,喜歡就去點點星吧,謝謝。

github.com/lanpangzhi

blog.langpz.com

參考

curder.gitbooks.io/blog/git/re…

相關文章