Created
September 19, 2018 13:59
-
-
Save jeremyvaught/c07a35eb1c0bb145da951f17a45191eb to your computer and use it in GitHub Desktop.
super basic git tag remover
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 | |
echo $1 | |
git tag -d $1 | |
git push origin :refs/tags/$1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment