Git拉取遠程分支到本地

Git拉取遠程分支到本地

拉取分支

首先你得先查看你是否和遠端的倉庫創建鏈接。html

git remote -v

若是沒有的話那就自行添加一下git

git remote add origin  xxxx(你遠程分支的git倉庫地址)

若是天天要提交代碼 ,能夠繞過上面這一步,直接切換分支github

git checkout -b Q3 origin/Q3

這個時候操做失敗提示以下:fetch

  • fatal: 'origin/Q3' is not a commit and a branch 'Q3' cannot be created from it

表明你本地沒有Q3這個遠程分支。code

能夠執行 git branch -r 來檢查本地是否有Q3遠程分支。
拉取遠程分支到本地並切換分支。htm

git fetch origin Q3
git checkout -b Q3 origin/Q3

拉取遠程分支到本地blog

git pull origin Q3

個人博客和github,喜歡就去點點星吧,謝謝。

https://github.com/lanpangzhirem

http://blog.langpz.comget

參考

https://curder.gitbooks.io/blog/git/remote_repository_pull.html博客

相關文章
相關標籤/搜索