运行 git checkout -b dev origin/dev 报错 "Cannot update paths and switch to branch at the same time"
处理步骤:
1、首先确定远程仓库是否有dev这个分支
2、git remote -v 看看你是否有fetch权限
3、git fetch origin 拉取一下
4、git branch -avv 看看是否拉取了
5、再运行命令
运行 git push origin release/xxx/xxx 报错
操作步骤:
1、不知道release分支是保护分支。所有在git push 的时候不成功
2、取消了release的是保护分支。再次git push 的时候报错了
解决方式:
1、执行命令: git push --force origin :release
2、git push origin release/xxx/xxx
参考:
https://stackoverflow.com/questions/37174130/pushing-to-a-remote-branch-failed-to-update-ref