summaryrefslogtreecommitdiff
path: root/git-merge.sh
diff options
context:
space:
mode:
authorLars Hjemli <hjemli@gmail.com>2007-09-23 22:51:41 (GMT)
committerJunio C Hamano <gitster@pobox.com>2007-09-24 00:14:03 (GMT)
commit2ae4fd7695abcf2ab36f3fe984cc4ca44559635f (patch)
treedfe78ed9228781ffaaa3394cba3412e0cbb90b98 /git-merge.sh
parenta85d1b69172f397e815e1ce02db41e4b82b86162 (diff)
downloadgit-2ae4fd7695abcf2ab36f3fe984cc4ca44559635f.zip
git-2ae4fd7695abcf2ab36f3fe984cc4ca44559635f.tar.gz
git-2ae4fd7695abcf2ab36f3fe984cc4ca44559635f.tar.bz2
git-merge: fix faulty SQUASH_MSG
Only the first 'remote' head is currently specified as an argument to 'git log' when generating a SQUSH_MSG, which makes the generated message fail to mention every commit involved in the merge. This fixes the problem. Noticed-by: Junio C Hamano <gitster@pobox.com> Signed-off-by: Lars Hjemli <hjemli@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-merge.sh')
-rwxr-xr-xgit-merge.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-merge.sh b/git-merge.sh
index cde09d4..919e6be 100755
--- a/git-merge.sh
+++ b/git-merge.sh
@@ -59,7 +59,7 @@ finish_up_to_date () {
squash_message () {
echo Squashed commit of the following:
echo
- git log --no-merges ^"$head" $remote
+ git log --no-merges ^"$head" $remoteheads
}
finish () {