GIT 子模块致命:无法描述

发布于 2024-08-11 11:21:48 字数 135 浏览 4 评论 0原文

我正在尝试向我的项目添加 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

最近可好 2024-08-18 11:21:48

这肯定是 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 (with git tag -s or git tag -a). For example to some released version.

冷了相思 2024-08-18 11:21:48

如果 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文