marcosvidolin
11/10/2017 - 9:37 PM

Adding and Removing Tags on GitHub


# To add a new Tag

## Add a new tag for the updated release:
git tag -a v1.0.0 -m "Version 1.0 Stable"

## Push the latest tag to GitHub (two dashes)
git push --tags


# To remove a Tag

## Delete the v1.0 tag locally
git tag -d v1.0

## Delete the v1.0.0 tag on GitHub (which removes its download link)
git push origin :v1.0.0