Useful GIT Commands

in useful •  4 years ago 

Git is a distributed version-control system for tracking changes in source code during software development.

delete local tag 'v2.0.1'

git tag -d v2.0.1

delete remote tag 'v2.0.1' (eg, GitHub version too)

git push origin :refs/tags/v2.0.1

alternative approach

git push --delete origin v2.0.1
git tag -d v2.0.1

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!