📜  在本地创建标签 - Shell-Bash 代码示例

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

代码示例1
#Create a tag locally
git tag 
#To add a description 
git tag  -a
#To push all tags to remote 
git push origin --tags
#To push a signle tag to remote
git push origin