Created
October 20, 2021 15:03
-
-
Save PaulRBerg/d7393533765726a0e8b1f37ce61c7171 to your computer and use it in GitHub Desktop.
Utility Bash script to rename git tags
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
git tag $NEW $OLD | |
git tag -d $OLD | |
git push origin $NEW :$OLD |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment