gpt4 book ai didi

github - 如何在 Github 提交中添加标签?

转载 作者:行者123 更新时间:2023-12-04 18:05:27 30 4
gpt4 key购买 nike

进行 GitHub 提交时,如何在将其推送到远程存储库之前使用 git 命令行选项对其进行标记?

可以做这样的事情吗?git commit -m 'first commit' -tag -a v0.0.1 -m "1st release"

最佳答案

AFAIK,您不能在一个命令中提交和标记。

git commit -m "prepare for v1.0.0 release"
git tag v1.0.0
git push origin master --tags

您所能做的就是通过 && 连接命令:
git commit -m "prepare for v1.0.0 release" && git tag v1.0.0 && git push origin master --tags

关于github - 如何在 Github 提交中添加标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29830544/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com