我有一个Jenkins管道脚本。在其中,我这样称呼Maven's release plugin:
mvn release:prepare
这引发了git push
,我收到了这个错误:
Unable to tag SCM
[ERROR] Provider message:
[ERROR] The git-tag command failed.
[ERROR] Command output:
[ERROR] fatal: tag 'my-project-1.3' already exists
但是,当我列出Git的本地标签时:
git tag -l
来自origin
的和代码:
git ls-remote --tags
没有显示任何内容。
那么在列出Git代码时我怎么看不到这个标签,但push
因为它而失败?