mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
4 lines
102 B
Bash
Executable file
4 lines
102 B
Bash
Executable file
#!/bin/sh
|
|
|
|
test -z $1 && echo "tag required." && exit 1
|
|
git tag -d $1 && git push origin :refs/tags/$1 |