Skip to content

Commit

Permalink
Fixing comment in merge strategies
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Tom Clarke authored and Junio C Hamano committed Aug 31, 2007
1 parent 93e23fe commit 7d3c82a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion git-merge-resolve.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ do
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 ;;
Expand Down
2 changes: 1 addition & 1 deletion git-merge-stupid.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ do
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 ;;
Expand Down

0 comments on commit 7d3c82a

Please sign in to comment.