summaryrefslogtreecommitdiffstats
path: root/bin/git-remove-origin-tags
blob: 85984094cf692a6fba8e2fdb30f03f0ea55e2811 (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