Git tag

Add new tag:

git tag -a 1.1.0 -m "Version 1.1.0";
git push --tags

List tags:

git tag

Delete local tag:

git tag -d 1.0

Delete remote tag:

git push origin :refs/tags/1.0

Leave a Reply