本文主要是介绍GIT 拉取代码报错error:some local refs could not be updated,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
文章目录
- 报错信息
- 处理办法
- 在这里插入图片描述
- 小结
报错信息
![new branch] dev->orgin/dev(unable to update local ref) error:some local refs could not be updated;try running git remote prune orgin'to remove any old,confilicting branches
处理办法
git gc --prune=now
git remote prune origin
小结
按照上述方法可以完美解决问题,已经亲自验证,各位看到的小伙伴可以放心使用。
这篇关于GIT 拉取代码报错error:some local refs could not be updated的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!