Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试在 Github 中编辑此标签,但它没有通过 Github 网站进行更新。
我尝试使用 CLIgit tag v2.0 2.0.0至少重命名它,但即使这样也会引发错误:fatal: Failed to resolve '2.0.0' as a valid ref.
git tag v2.0 2.0.0
fatal: Failed to resolve '2.0.0' as a valid ref.
我注意到在我的 .git/config 文件中它仍然有jeet2分支,但我不久前删除了那个分支。
jeet2
任何人都知道这是它不起作用的原因还是有其他想法?谢谢
我认为您不能以声明方式设置要标记的引用。
它应该以这种方式工作:
git checkout 2.0.0 git tag -a v2.0