diff options
author | Junio C Hamano <gitster@pobox.com> | 2016-09-15 14:11:15 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2016-09-15 14:11:15 -0700 |
commit | 4fa1251bc24e04dcc78bf93b9fd6344e6fd2a114 (patch) | |
tree | a88a42952681e906dddbc54abbb5791a4c62988f /git-merge-octopus.sh | |
parent | 581c08e8020db08140bb0e26a3ade1db0aba5fbb (diff) | |
parent | a1c8044662947caeefc9d8f5c31dc77548d81cb4 (diff) | |
download | git-4fa1251bc24e04dcc78bf93b9fd6344e6fd2a114.tar.gz |
Merge branch 'ah/misc-message-fixes'
Message cleanup.
* ah/misc-message-fixes:
unpack-trees: do not capitalize "working"
git-merge-octopus: do not capitalize "octopus"
git-rebase--interactive: fix English grammar
cat-file: put spaces around pipes in usage string
am: put spaces around pipe in usage string
Diffstat (limited to 'git-merge-octopus.sh')
-rwxr-xr-x | git-merge-octopus.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/git-merge-octopus.sh b/git-merge-octopus.sh index 308eafd1d3..bcf0d92ec2 100755 --- a/git-merge-octopus.sh +++ b/git-merge-octopus.sh @@ -30,7 +30,7 @@ do esac done -# Reject if this is not an Octopus -- resolve should be used instead. +# Reject if this is not an octopus -- resolve should be used instead. case "$remotes" in ?*' '?*) ;; @@ -59,7 +59,7 @@ do # conflicts. Last round failed and we still had # a head to merge. gettextln "Automated merge did not work." - gettextln "Should not be doing an Octopus." + gettextln "Should not be doing an octopus." exit 2 esac |