首先你得先查看你是否和遠端的倉庫創建鏈接。html
git remote -v
若是沒有的話那就自行添加一下git
git remote add origin xxxx(你遠程分支的git倉庫地址)
若是天天要提交代碼 ,能夠繞過上面這一步,直接切換分支github
git checkout -b Q3 origin/Q3
這個時候操做失敗提示以下:fetch
表明你本地沒有Q3這個遠程分支。code
能夠執行 git branch -r 來檢查本地是否有Q3遠程分支。
拉取遠程分支到本地並切換分支。htm
git fetch origin Q3 git checkout -b Q3 origin/Q3
拉取遠程分支到本地blog
git pull origin Q3
https://github.com/lanpangzhirem
https://curder.gitbooks.io/blog/git/remote_repository_pull.html博客