Git tags
Tags git tag -a v1.0 -m ‘version 1.0’ # add tag git tag -d v1.0 # remove tag git push origin :refs/tags/v1.0 # remove remote tag
Tags git tag -a v1.0 -m ‘version 1.0’ # add tag git tag -d v1.0 # remove tag git push origin :refs/tags/v1.0 # remove remote tag