码迷,mamicode.com
首页 > 其他好文 > 详细

Cannot update paths and switch to branch at the same time(转)

时间:2015-10-22 00:08:06      阅读:479      评论:0      收藏:0      [点我收藏+]

标签:

当使用git进行操作:

git checkout -b local-name origin/remote-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 update

git fetch

git checkout -b local-name origin/remote-name

http://www.cnblogs.com/iminic/p/4398265.html

Cannot update paths and switch to branch at the same time(转)

标签:

原文地址:http://www.cnblogs.com/softidea/p/4899444.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!