Revision 516236ce3fc6208c217e39d2c005cb162ad56486 authored by Linus Torvalds on 14 July 2005, 03:55:56 UTC, committed by Linus Torvalds on 14 July 2005, 03:55:56 UTC
Oh, well..  FC4 has UTF-8 as the default environment, and I applaud
that, but then it sometimes results in these characters that aren't
actually visible as a problem.
1 parent 12dd6e8
Raw File
git-tag-script
#!/bin/sh
# Copyright (c) 2005 Linus Torvalds

. 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 "#"
  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_DIR/refs/tags/$name"
#rm .tmp-tag .tmp-tag.sig
back to top