.dotfiles/.bin/git-retag
2024-04-30 18:24:24 +02:00

11 lines
165 B
Bash
Executable file

#!/usr/bin/env sh
echo "Deleting tag from origin"
git push --delete origin "v$1"
echo "Deleting tag locally"
git tag -d "v$1"
echo "Recreating tag"
git vtag "$1"