0


Git error-fatal-Needed a single revision

由于公司要求,需要把旧的项目迁移到新的gitlab地址上,这好办,只需要改下remote repository url就可以了,如果仓库中用到子模块,还需要顺便更新子模块的url。

不过,本地是编译通过了,但是推送到远程后,gitlab CI编译时会报错如下:

fatal: Needed a single revision
Unable to find current origin/HEAD revision in submodule path

网上也能搜到相同的问题,但是没有一个是在gitlab CI上遇到这个问题的,他们的解决方法存在一些问题,在gitlab CI上仍然会报相同的错误。

后面经过几天的摸索,终于找到正确的解决方法。

  1. 移除子模块
gitrm<submodulePath>

注意需要使用git rm命令来删除子模块,这样.gitmodules下的相关信息也能一并删除。

  1. 提交删除更改
git commit -m"remove submodule"
  1. 重新添加子模块
git submodule add<url><path>
  1. 提交添加子模块更改
git commit -m"add submodule"

这时候再看gitlab CI,就不会再报这个错误了。

标签: git github

本文转载自: https://blog.csdn.net/heros_bag/article/details/128965598
版权归原作者 爱马仕的包包 所有, 如有侵权,请联系我们删除。

“Git error-fatal-Needed a single revision”的评论:

还没有评论