首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

git 拉取远路分之到本地

2013-09-18 
git 拉取远程分之到本地git checkout -b newbranch_name --track origin/feature/newbranch_name 如果遇到

git 拉取远程分之到本地

git checkout -b newbranch_name --track origin/feature/newbranch_name 

如果遇到类似:

fatal: git checkout: updating paths is incompatible with switching branches.Did you intend to checkout 'origin/remote-name' which can not be resolved as commit?
的问题
可使用一下命令:
git remote show origin
git remote updategit fetch
然后再使用:
git checkout -b local-name origin/remote-name
命令即可。
参考资料:Git checkout on a remote branch does not work

热点排行