From 1825d059deb7f1456110a94e8a3a7ba0e782d37c Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Wed, 22 Jan 2014 14:58:44 +0200 Subject: Initial set of tools --- update_tags | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100755 update_tags (limited to 'update_tags') diff --git a/update_tags b/update_tags new file mode 100755 index 0000000..31ad8a4 --- /dev/null +++ b/update_tags @@ -0,0 +1,12 @@ +#!/bin/sh + +git branch -r | egrep 'tags/(|PR)[0-9]' | sed -e 's"tags/\(.*\)"& v\1"' \ + | while read branch tag; do + if ! git show-ref -q "$tag"; then + echo "Tagging $tag from $branch" + git tag $tag $branch + elif [ `git show-ref -s $branch` != `git show-ref -s $tag` ]; then + echo "Updating $tag from $branch" + git tag -f $tag $branch + fi + done -- cgit v1.2.3