X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;ds=sidebyside;f=git-tag-script;h=442a243575382a92f97d98efe44db37ab287e50c;hb=5f40520f8c4ca24b29295a36c7a7b6059ad5a888;hp=281d192814ec200199379f44fef10d2b04f762c1;hpb=85c1f337be49eaa9a22e42a1c9958deef5ab57c3;p=git.git diff --git a/git-tag-script b/git-tag-script index 281d1928..442a2435 100755 --- a/git-tag-script +++ b/git-tag-script @@ -1,12 +1,24 @@ #!/bin/sh # Copyright (c) 2005 Linus Torvalds -: ${GIT_DIR=.git} +. git-sh-setup-script || die "Not a git archive" +name="$1" +[ "$name" ] || die "I need a tag-name" object=${2:-$(cat "$GIT_DIR"/HEAD)} type=$(git-cat-file -t $object) || exit 1 -( echo -e "object $object\ntype $type\ntag $1\n"; cat ) > .tmp-tag -rm -f .tmp-tag.asc + +( echo "#" + echo "# Write a tag message" + echo "#" ) > .editmsg +${VISUAL:-${EDITOR:-vi}} .editmsg || exit + +grep -v '^#' < .editmsg | git-stripspace > .tagmsg + +[ -s .tagmsg ] || exit + +( echo -e "object $object\ntype $type\ntag $name\n"; cat .tagmsg ) > .tmp-tag +rm -f .tmp-tag.asc .tagmsg gpg -bsa .tmp-tag && cat .tmp-tag.asc >> .tmp-tag -git-mktag < .tmp-tag +git-mktag < .tmp-tag > "$GIT_DIR/refs/tags/$name" #rm .tmp-tag .tmp-tag.sig