diff --git a/cleanup-tags.sh b/cleanup-tags.sh new file mode 100644 index 0000000..80a9948 --- /dev/null +++ b/cleanup-tags.sh @@ -0,0 +1,4 @@ +git config remote.origin.url https://Quantum64:${TOKEN}@github.com/Quantum64/ExGregilo.git +TAGS=$(git tag); +git tag -d $TAGS; +for TAG in $TAGS; do git push origin :refs/tags/$TAG; done;