summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorAndy Parkins <andyparkins@gmail.com>2007-03-14 14:25:52 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-03-14 16:14:51 (GMT)
commitc47e6a43d30c8a1fd4b8e9234883f01fe3bac805 (patch)
tree66ee8e434260ae578fefce4f2ce566e02e767a11 /templates
parentc49b260e99d3e0fdd5d84615091ebb969adef5b2 (diff)
downloadgit-c47e6a43d30c8a1fd4b8e9234883f01fe3bac805.zip
git-c47e6a43d30c8a1fd4b8e9234883f01fe3bac805.tar.gz
git-c47e6a43d30c8a1fd4b8e9234883f01fe3bac805.tar.bz2
update-hook: fix incorrect use of git-describe and sed for finding previous tag
Previously git-describe would output lines of the form v1.1.1-gf509d56 The update hook found the dash and stripped it off using sed 's/-g.*//' The remainder was then used as the previous tag name. However, git-describe has changed format. The output is now of the form v1.1.1-23-gf509d56 The above sed fragment doesn't strip the middle "-23", and so the previous tag name used would be "v1.1.1-23". This is incorrect. Since the hook script was written, git-describe now gained support for "--abbrev=0", which it uses as a special flag to tell it not to output anything other than the nearest tag name. This patch fixes the problem, and prevents any future recurrence by using this new flag rather than sed to find the previous tag. Signed-off-by: Andy Parkins <andyparkins@gmail.com> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'templates')
-rw-r--r--templates/hooks--update2
1 files changed, 1 insertions, 1 deletions
diff --git a/templates/hooks--update b/templates/hooks--update
index 5b82b68..8f6c4fe 100644
--- a/templates/hooks--update
+++ b/templates/hooks--update
@@ -210,7 +210,7 @@ case "$refname_type" in
fi
# If this tag succeeds another, then show which tag it replaces
- prevtag=$(git describe $newrev^ 2>/dev/null | sed 's/-g.*//')
+ prevtag=$(git describe --abbrev=0 $newrev^ 2>/dev/null)
if [ -n "$prevtag" ]; then
echo " replaces $prevtag"
fi