rwxrob-dot/scripts/untag
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

4 lines
111 B
Bash
Executable File

#!/bin/sh
test -z "$1" && echo "usage: untag <tag>" && exit 1
git tag -d "$1" && git push --delete origin "$1"