2005-04-26 00:23:53 +02:00
|
|
|
#!/bin/sh
|
2005-05-10 07:57:58 +02:00
|
|
|
# Copyright (c) 2005 Linus Torvalds
|
|
|
|
|
2005-12-13 23:30:31 +01:00
|
|
|
USAGE='[-a | -s | -u <key-id>] [-f | -d] [-m <msg>] <tagname> [<head>]'
|
|
|
|
SUBDIRECTORY_OK='Yes'
|
|
|
|
. git-sh-setup
|
2005-11-28 08:33:54 +01:00
|
|
|
|
2005-07-26 00:18:35 +02:00
|
|
|
annotate=
|
2005-07-24 00:21:22 +02:00
|
|
|
signed=
|
|
|
|
force=
|
2005-08-09 02:04:42 +02:00
|
|
|
message=
|
2005-10-06 23:10:39 +02:00
|
|
|
username=
|
2005-07-24 00:21:22 +02:00
|
|
|
while case "$#" in 0) break ;; esac
|
|
|
|
do
|
|
|
|
case "$1" in
|
2005-07-26 00:18:35 +02:00
|
|
|
-a)
|
|
|
|
annotate=1
|
|
|
|
;;
|
2005-07-24 00:21:22 +02:00
|
|
|
-s)
|
2005-07-26 00:18:35 +02:00
|
|
|
annotate=1
|
2005-07-24 00:21:22 +02:00
|
|
|
signed=1
|
|
|
|
;;
|
|
|
|
-f)
|
|
|
|
force=1
|
|
|
|
;;
|
2005-08-09 02:04:42 +02:00
|
|
|
-m)
|
|
|
|
annotate=1
|
|
|
|
shift
|
|
|
|
message="$1"
|
|
|
|
;;
|
2005-10-06 23:10:39 +02:00
|
|
|
-u)
|
|
|
|
annotate=1
|
|
|
|
signed=1
|
|
|
|
shift
|
|
|
|
username="$1"
|
|
|
|
;;
|
2005-11-08 11:44:33 +01:00
|
|
|
-d)
|
|
|
|
shift
|
|
|
|
tag_name="$1"
|
|
|
|
rm "$GIT_DIR/refs/tags/$tag_name" && \
|
|
|
|
echo "Deleted tag $tag_name."
|
|
|
|
exit $?
|
|
|
|
;;
|
2005-07-26 00:18:35 +02:00
|
|
|
-*)
|
|
|
|
usage
|
|
|
|
;;
|
2005-07-24 00:21:22 +02:00
|
|
|
*)
|
|
|
|
break
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
shift
|
|
|
|
done
|
|
|
|
|
2005-07-09 03:23:06 +02:00
|
|
|
name="$1"
|
2005-07-26 00:18:35 +02:00
|
|
|
[ "$name" ] || usage
|
|
|
|
if [ -e "$GIT_DIR/refs/tags/$name" -a -z "$force" ]; then
|
|
|
|
die "tag '$name' already exists"
|
|
|
|
fi
|
2005-07-24 00:21:22 +02:00
|
|
|
shift
|
2005-10-14 03:57:39 +02:00
|
|
|
git-check-ref-format "tags/$name" ||
|
|
|
|
die "we do not like '$name' as a tag name."
|
2005-05-10 07:57:58 +02:00
|
|
|
|
2005-08-16 00:37:37 +02:00
|
|
|
object=$(git-rev-parse --verify --default HEAD "$@") || exit 1
|
2005-04-30 01:25:05 +02:00
|
|
|
type=$(git-cat-file -t $object) || exit 1
|
2005-07-15 03:02:10 +02:00
|
|
|
tagger=$(git-var GIT_COMMITTER_IDENT) || exit 1
|
2005-10-06 23:10:39 +02:00
|
|
|
: ${username:=$(expr "$tagger" : '\(.*>\)')}
|
2005-07-09 03:23:06 +02:00
|
|
|
|
2005-11-04 00:26:43 +01:00
|
|
|
trap 'rm -f "$GIT_DIR"/TAG_TMP* "$GIT_DIR"/TAG_FINALMSG "$GIT_DIR"/TAG_EDITMSG' 0
|
2005-07-26 00:18:35 +02:00
|
|
|
|
|
|
|
if [ "$annotate" ]; then
|
2005-08-09 02:04:42 +02:00
|
|
|
if [ -z "$message" ]; then
|
|
|
|
( echo "#"
|
|
|
|
echo "# Write a tag message"
|
2005-11-04 00:26:43 +01:00
|
|
|
echo "#" ) > "$GIT_DIR"/TAG_EDITMSG
|
|
|
|
${VISUAL:-${EDITOR:-vi}} "$GIT_DIR"/TAG_EDITMSG || exit
|
2005-08-09 02:04:42 +02:00
|
|
|
else
|
2005-11-04 00:26:43 +01:00
|
|
|
echo "$message" >"$GIT_DIR"/TAG_EDITMSG
|
2005-08-09 02:04:42 +02:00
|
|
|
fi
|
2005-07-24 00:21:22 +02:00
|
|
|
|
2005-11-04 00:26:43 +01:00
|
|
|
grep -v '^#' <"$GIT_DIR"/TAG_EDITMSG |
|
|
|
|
git-stripspace >"$GIT_DIR"/TAG_FINALMSG
|
2005-07-09 03:23:06 +02:00
|
|
|
|
2005-11-04 00:26:43 +01:00
|
|
|
[ -s "$GIT_DIR"/TAG_FINALMSG ] || {
|
2005-10-06 23:10:39 +02:00
|
|
|
echo >&2 "No tag message?"
|
|
|
|
exit 1
|
|
|
|
}
|
2005-07-09 03:23:06 +02:00
|
|
|
|
2005-11-04 00:26:43 +01:00
|
|
|
( echo -e "object $object\ntype $type\ntag $name\ntagger $tagger\n";
|
|
|
|
cat "$GIT_DIR"/TAG_FINALMSG ) >"$GIT_DIR"/TAG_TMP
|
|
|
|
rm -f "$GIT_DIR"/TAG_TMP.asc "$GIT_DIR"/TAG_FINALMSG
|
2005-07-26 00:18:35 +02:00
|
|
|
if [ "$signed" ]; then
|
2005-11-04 00:26:43 +01:00
|
|
|
gpg -bsa -u "$username" "$GIT_DIR"/TAG_TMP &&
|
|
|
|
cat "$GIT_DIR"/TAG_TMP.asc >>"$GIT_DIR"/TAG_TMP ||
|
2005-07-26 00:18:35 +02:00
|
|
|
die "failed to sign the tag with GPG."
|
|
|
|
fi
|
2005-11-04 00:26:43 +01:00
|
|
|
object=$(git-mktag < "$GIT_DIR"/TAG_TMP)
|
2005-07-24 00:21:22 +02:00
|
|
|
fi
|
2005-07-09 03:23:06 +02:00
|
|
|
|
2005-11-08 01:22:34 +01:00
|
|
|
leading=`expr "refs/tags/$name" : '\(.*\)/'` &&
|
|
|
|
mkdir -p "$GIT_DIR/$leading" &&
|
2005-07-24 00:21:22 +02:00
|
|
|
echo $object > "$GIT_DIR/refs/tags/$name"
|