Repo sync 时出现fatal_ couldn‘t find remote ref refs_heads_master问题解决
发布时间:2023年12月17日
repo sync默认的origin分支是master,它默认会依赖master,但是我们的manifests分支是main,需要解决这个问题主要执行下面的几步:
- 更新repo到最新版本
cd .repo/repo
git pull
- 前往git库创建origin master
- 在manifests下拉代码,把origin master拉下来
cd .repo/manifests
git pull
- 执行repo sync
cd .repo/manifests
git checkout <test_branch>
repo sync
此时就不会报题中的错误了,记得origin master
可以删掉。
文章来源:https://blog.csdn.net/xiaokai1999/article/details/134967954
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请联系我的编程经验分享网邮箱:chenni525@qq.com进行投诉反馈,一经查实,立即删除!