65d9fb487f
The script 'git notes' allows you to edit and show commit notes, by calling either git notes show <commit> or git notes edit <commit> This patch has been improved by the following contributions: - Tor Arne Vestbø: fix printing of multi-line notes - Michael J Gruber: test and handle empty notes gracefully - Thomas Rast: - only clean up message file when editing - use GIT_EDITOR and core.editor over VISUAL/EDITOR - t3301: fix confusing quoting in test for valid notes ref - t3301: use test_must_fail instead of ! - refuse to edit notes outside refs/notes/ - Junio C Hamano: tests: fix "export var=val" - Christian Couder: documentation: fix 'linkgit' macro in "git-notes.txt" - Johan Herland: minor cleanup and bugfixing in git-notes.sh (v2) Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de> Signed-off-by: Tor Arne Vestbø <tavestbo@trolltech.com> Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Thomas Rast <trast@student.ethz.ch> Signed-off-by: Christian Couder <chriscool@tuxfamily.org> Signed-off-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
74 lines
2.0 KiB
Bash
Executable File
74 lines
2.0 KiB
Bash
Executable File
#!/bin/sh
|
|
|
|
USAGE="(edit | show) [commit]"
|
|
. git-sh-setup
|
|
|
|
test -n "$3" && usage
|
|
|
|
test -z "$1" && usage
|
|
ACTION="$1"; shift
|
|
|
|
test -z "$GIT_NOTES_REF" && GIT_NOTES_REF="$(git config core.notesref)"
|
|
test -z "$GIT_NOTES_REF" && GIT_NOTES_REF="refs/notes/commits"
|
|
|
|
COMMIT=$(git rev-parse --verify --default HEAD "$@") ||
|
|
die "Invalid commit: $@"
|
|
|
|
case "$ACTION" in
|
|
edit)
|
|
if [ "${GIT_NOTES_REF#refs/notes/}" = "$GIT_NOTES_REF" ]; then
|
|
die "Refusing to edit notes in $GIT_NOTES_REF (outside of refs/notes/)"
|
|
fi
|
|
|
|
MSG_FILE="$GIT_DIR/new-notes-$COMMIT"
|
|
GIT_INDEX_FILE="$MSG_FILE.idx"
|
|
export GIT_INDEX_FILE
|
|
|
|
trap '
|
|
test -f "$MSG_FILE" && rm "$MSG_FILE"
|
|
test -f "$GIT_INDEX_FILE" && rm "$GIT_INDEX_FILE"
|
|
' 0
|
|
|
|
GIT_NOTES_REF= git log -1 $COMMIT | sed "s/^/#/" > "$MSG_FILE"
|
|
|
|
CURRENT_HEAD=$(git show-ref "$GIT_NOTES_REF" | cut -f 1 -d ' ')
|
|
if [ -z "$CURRENT_HEAD" ]; then
|
|
PARENT=
|
|
else
|
|
PARENT="-p $CURRENT_HEAD"
|
|
git read-tree "$GIT_NOTES_REF" || die "Could not read index"
|
|
git cat-file blob :$COMMIT >> "$MSG_FILE" 2> /dev/null
|
|
fi
|
|
|
|
core_editor="$(git config core.editor)"
|
|
${GIT_EDITOR:-${core_editor:-${VISUAL:-${EDITOR:-vi}}}} "$MSG_FILE"
|
|
|
|
grep -v ^# < "$MSG_FILE" | git stripspace > "$MSG_FILE".processed
|
|
mv "$MSG_FILE".processed "$MSG_FILE"
|
|
if [ -s "$MSG_FILE" ]; then
|
|
BLOB=$(git hash-object -w "$MSG_FILE") ||
|
|
die "Could not write into object database"
|
|
git update-index --add --cacheinfo 0644 $BLOB $COMMIT ||
|
|
die "Could not write index"
|
|
else
|
|
test -z "$CURRENT_HEAD" &&
|
|
die "Will not initialise with empty tree"
|
|
git update-index --force-remove $COMMIT ||
|
|
die "Could not update index"
|
|
fi
|
|
|
|
TREE=$(git write-tree) || die "Could not write tree"
|
|
NEW_HEAD=$(echo Annotate $COMMIT | git commit-tree $TREE $PARENT) ||
|
|
die "Could not annotate"
|
|
git update-ref -m "Annotate $COMMIT" \
|
|
"$GIT_NOTES_REF" $NEW_HEAD $CURRENT_HEAD
|
|
;;
|
|
show)
|
|
git rev-parse -q --verify "$GIT_NOTES_REF":$COMMIT > /dev/null ||
|
|
die "No note for commit $COMMIT."
|
|
git show "$GIT_NOTES_REF":$COMMIT
|
|
;;
|
|
*)
|
|
usage
|
|
esac
|