[Git tag] related operations

Playing tag: git tag -a [tag name] -m "The tag Remarks"
push all the tag: git push --tags
delete tag: git tag -d [tag name]

Deleting Remote Tag  git push origin :refs/tags/[Tag Name]

 

View remote tag

git ls-remote

Published 200 original articles · won praise 50 · Views 650,000 +

Guess you like

Origin blog.csdn.net/allanGold/article/details/104616244