summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 93e23fe)
raw | patch | inline | side by side (parent: 93e23fe)
author | Tom Clarke <tom@u2i.com> | |
Thu, 30 Aug 2007 21:12:44 +0000 (23:12 +0200) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Fri, 31 Aug 2007 00:18:22 +0000 (17:18 -0700) |
Comments in both these strategies refer to the wrong number
of remotes
Signed-off-by: Tom Clarke <tom@u2i.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
of remotes
Signed-off-by: Tom Clarke <tom@u2i.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-merge-resolve.sh | patch | blob | history | |
git-merge-stupid.sh | patch | blob | history |
diff --git a/git-merge-resolve.sh b/git-merge-resolve.sh
index bb19da2cc15715df9c96ddea18c6d449ce49b6e4..93bcfc2f5dce418d00f26257788932d5c738785c 100755 (executable)
--- a/git-merge-resolve.sh
+++ b/git-merge-resolve.sh
esac
done
-# Give up if we are given more than two remotes -- not handling octopus.
+# Give up if we are given two or more remotes -- not handling octopus.
case "$remotes" in
?*' '?*)
exit 2 ;;
diff --git a/git-merge-stupid.sh b/git-merge-stupid.sh
index 4b1e595363cdcfae9d9c567d98127ee83bcc2b23..f612d4729c9ae0ccdebd6b9671da3b5f89bb65f0 100755 (executable)
--- a/git-merge-stupid.sh
+++ b/git-merge-stupid.sh
esac
done
-# Give up if we are given more than two remotes -- not handling octopus.
+# Give up if we are given two or more remotes -- not handling octopus.
case "$remotes" in
?*' '?*)
exit 2 ;;