summaryrefslogtreecommitdiffstats
path: root/git/bin/git-remove-origin-tags
blob: bcbf1920f3726b8dab28d363b9ceee334d9c8f68 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e

TAGS="${*}"

for TAG in ${TAGS}
do
	git push origin :refs/tags/"${TAG}"
done