Skip to main content

Posts

Showing posts from November, 2018

How to rename GIT tags ?

Sometimes we might need to rename the GIT tags , this can be easily achieved by following these steps using GIT command line tool. git tag new-tag old-tag git tag -d old-tag git push origin :refs/tags/old-tag git push --tags