mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
6 lines
132 B
Bash
Executable file
6 lines
132 B
Bash
Executable file
#!/bin/sh
|
|
|
|
tagname=$1
|
|
test -z $tagname && echo "tag required." && exit 1
|
|
git tag -d $tagname && git push origin :refs/tags/$tagname
|