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