GIT 子模块致命:无法描述
我正在尝试向我的项目添加 git 子模块,但 git 一直告诉我 $ git 子模块 致命:无法描述“dd650e8bb4762a8a7f69a6412b4765c9bb108778”
“致命:无法描述”是什么意思以及如何避免这种情况?
I am trying to add a git submodule to my project, but git keep telling me
$ git submodule
fatal: cannot describe 'dd650e8bb4762a8a7f69a6412b4765c9bb108778'
What means "fatal: cannot describe" and how can i avoid this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这肯定是 Git 中的错误(请将其发生方式的描述以及 git 版本发送到 git 邮件列表),但是您可以通过创建带注释的标签来避免此
gitdescribe
错误在添加子模块之前指向某处提交(使用 git tag -s 或 git tag -a )。例如某些已发布的版本。This is certainly bug in Git (please send description of how it does occur, and the git version to git mailing list), but you can avoid this
git describe
error by creating annotated tag pointing somewhere to the commit before adding submodule (withgit tag -s
orgit tag -a
). For example to some released version.如果 git describe 找不到带注释的标签并且您不使用 --tags 开关,则会抛出错误“无法描述”。有关详细信息,请参阅 man git-describe 和 man git-tag 。
git describe will throw an error 'cannot describe' if it cannot find an annotated tag and you do not use the --tags switch. See man git-describe and man git-tag for more info on this.