在本地pull一个的远程的库的时候,拉不下来的解决方法

从github上pull一个本地不存在的分支的方法?

github分支结构

  • master
  • develop

本地代码的结构

  • master

现在我想从github中pull其develop分支,想达到本地也有master和develop分支的效果,但是我用

git pull origin develop

没有达到效果。

解决方法:

一键拉取本地上不存在的远程分支:git checkout -b new_branch origin/new_branch

https://segmentfault.com/q/1010000000367843

你可能感兴趣的:(开工工具,--,Git)