Create a tag

git tag v0.1.0

List tags

git tag

Push a tag

git push origin v0.1.0

Checkout a tag

git checkout v0.1.0

Delete a tag

git tag -d v0.1.0

Delete all tags

git tag -d $(git tag -l)

Delete all remote tags

git push origin--delete $(git tag -l)

References:

  • https://www.atlassian.com/git/tutorials/inspecting-a-repository/git-tag