We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Show all tags
git tag
Tag a specific <commit_id> locally
git tag -a <tag_name> -m <tag_description> <commit_id>
Remove a tag locally
git tag --delete <tagname>
Push all tags to remote
git push --tags
Delete tag from remote
git push --delete origin <tagname>
Fetch all remote tags
git fetch --tags
Sync to a tag
git checkout <tag_name>
There was an error while loading. Please reload this page.