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