From afd46b3e89c320a5b0acda8c618f25ca9b8a63cc Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Sun, 8 Jan 2006 17:18:32 -0800 Subject: [PATCH] Use describe to name the revision. --- dodoc.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dodoc.sh b/dodoc.sh index 82f3493e91..8202a6047b 100755 --- a/dodoc.sh +++ b/dodoc.sh @@ -36,7 +36,9 @@ test "$DOCREPO" != "" && cd "$DOCREPO" || exit $? git pull "$MASTERREPO" master && -test $(git-rev-parse --verify refs/heads/master) == "$ID" || exit $? +test $(git-rev-parse --verify refs/heads/master) == "$ID" && +NID=$(git-describe --abbrev=4 "$ID") && +test '' != "$NID" || exit $? # Set up subrepositories test -d doc-htmlpages || ( @@ -76,7 +78,7 @@ fi || exit $? cd ../doc-htmlpages && git add . && - if git commit -a -m "Autogenerated HTML docs for $ID" + if git commit -a -m "Autogenerated HTML docs for $NID" then git-send-pack "$MASTERREPO" master:refs/heads/html || { echo "* HTML failure" @@ -92,7 +94,7 @@ make man1="$DOCREPO/doc-manpages/man1" man7="$DOCREPO/doc-manpages/man7" \ cd ../doc-manpages && git add . && - if git commit -a -m "Autogenerated man pages for $ID" + if git commit -a -m "Autogenerated man pages for $NID" then git-send-pack "$MASTERREPO" master:refs/heads/man || { echo "* man failure" -- 2.32.0.93.g670b81a890