From: Shawn Pearce Date: Tue, 11 Jul 2006 06:10:19 +0000 (-0400) Subject: Log ref changes made by quiltimport. X-Git-Tag: v1.4.2-rc1^2~2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=09a28eccce58d349d93280fd3ac08c5ad0eaa3c5;p=git.git Log ref changes made by quiltimport. When importing a quilt patch to a branch which has a reflog record the update to HEAD with a log message indicating the change was made by quiltimport and what patch caused the change. Signed-off-by: Shawn O. Pearce Signed-off-by: Junio C Hamano --- diff --git a/git-quiltimport.sh b/git-quiltimport.sh index 364baff80..10135da3a 100755 --- a/git-quiltimport.sh +++ b/git-quiltimport.sh @@ -112,7 +112,7 @@ for patch_name in $(cat "$QUILT_PATCHES/series" | grep -v '^#'); do git-apply --index -C1 "$tmp_patch" && tree=$(git-write-tree) && commit=$((echo "$SUBJECT"; echo; cat "$tmp_msg") | git-commit-tree $tree -p $commit) && - git-update-ref HEAD $commit || exit 4 + git-update-ref -m "quiltimport: $patch_name" HEAD $commit || exit 4 fi done rm -rf $tmp_dir || exit 5