How to rename GIT tags ? November 19, 2018 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 Read more