为某个分支打tag

git tag -a v1.2 9fceb02

删除tag

git tag -d test_tag
git push origin --delete tag test_tag

推送:

git push origin --tags

 

 

相关文章: