From fd5f40c9032489be3db0c53eb97ca560bdea425b Mon Sep 17 00:00:00 2001 From: Tzafrir Cohen Date: Tue, 14 Apr 2009 20:59:06 +0300 Subject: update_tags: update the list of tags from svn --- update_tags | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100755 update_tags (limited to 'update_tags') diff --git a/update_tags b/update_tags new file mode 100755 index 0000000..78675ee --- /dev/null +++ b/update_tags @@ -0,0 +1,9 @@ +#!/bin/sh + +git branch -r | grep 'tags/[0-9]' | sed -e 's"tags/\(.*\)"& v\1"' \ + | while read branch tag; do + if [ ! -r .git/refs/tags/$tag ]; then + echo "tagging $tag from $branch" + git tag $tag $branch + fi + done -- cgit v1.2.3