summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 85bf49f)
raw | patch | inline | side by side (parent: 85bf49f)
author | Stephen Boyd <bebarino@gmail.com> | |
Sat, 12 Dec 2009 00:38:59 +0000 (16:38 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Mon, 14 Dec 2009 07:40:24 +0000 (23:40 -0800) |
MSG, PARENT, and CNT are never used, just assigned to.
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-merge-octopus.sh | patch | blob | history |
diff --git a/git-merge-octopus.sh b/git-merge-octopus.sh
index 3d1a29ecd2079decc0602b0073c32dd4a6c7ac0e..615753c83c38f4a97752d5ca3400beeef4acd5f1 100755 (executable)
--- a/git-merge-octopus.sh
+++ b/git-merge-octopus.sh
# MRC is the current "merge reference commit"
# MRT is the current "merge result tree"
-MRC=$(git rev-parse --verify -q $head) MSG= PARENT="-p $head"
+MRC=$(git rev-parse --verify -q $head)
MRT=$(git write-tree)
-CNT=1 ;# counting our head
NON_FF_MERGE=0
OCTOPUS_FAILURE=0
for SHA1 in $remotes
;;
esac
- CNT=`expr $CNT + 1`
- PARENT="$PARENT -p $SHA1"
-
if test "$common,$NON_FF_MERGE" = "$MRC,0"
then
# The first head being merged was a fast-forward.