📌  相关文章
📜  如何向现有 Git 标签添加新提交 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:44.651000             🧑  作者: Mango

代码示例1
# Create a new branch from tag v1.1
git checkout -b newbranch v1.1

# Do some work and commit it

# Create a new tag from your work
git tag -a -m "Tag version 1.1.1, a bugfix release" v1.1.1