mirror of
https://github.com/rwxrob/dot
synced 2024-11-18 15:25:52 +00:00
4 lines
111 B
Bash
Executable File
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"
|