博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Cannot update paths and switch to branch at the same time(转)
阅读量:6246 次
发布时间:2019-06-22

本文共 373 字,大约阅读时间需要 1 分钟。

当使用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

你可能感兴趣的文章
Kotlin代码检查在美团的探索与实践
查看>>
Tomcat下的修改缺省项目文件夹
查看>>
网络技术
查看>>
it公司了解
查看>>
SpringCloud调研系列1:服务注册
查看>>
使用四种框架分别实现百万websocket常连接的服务器{转}
查看>>
python 之 随机数获取
查看>>
Linux开机启动流程
查看>>
Docker 介绍: 相关技术
查看>>
xcode中Version和Build的区别
查看>>
RedHat下利用bonding实现linux服务器网卡绑定
查看>>
libjingle : sessionmanagertask 分析
查看>>
主从DB与cache一致性
查看>>
Nginx使用的php-fpm的两种进程管理方式及优化
查看>>
CTeX-2.4.6-Full
查看>>
python编码
查看>>
增加squid的filedescriptors
查看>>
Xmanger远程登录Linux服务器
查看>>
Windows Ready Boost,使用闪存设备提高性能
查看>>
mysql导入导出包括函数或者存储过程
查看>>