aboutsummaryrefslogtreecommitdiff
path: root/builtin/merge.c
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2014-08-30 13:56:01 -0600
committerJunio C Hamano <gitster@pobox.com>2014-09-02 12:00:30 -0700
commitad5fe3771b50f3862130d150b5cc8bb316ef6f1c (patch)
tree720d0806aa46914127296596ea5818f283dc502f /builtin/merge.c
parent96db324a73fdada6fbe7b63221986f8f18cc63b0 (diff)
downloadgit-ad5fe3771b50f3862130d150b5cc8bb316ef6f1c.tar.gz
git-ad5fe3771b50f3862130d150b5cc8bb316ef6f1c.tar.xz
grammofix in user-facing messages
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Acked-by: Johan Herland <johan@herland.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/merge.c')
-rw-r--r--builtin/merge.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/merge.c b/builtin/merge.c
index ce82eb297..db47200d8 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -1144,14 +1144,14 @@ int cmd_merge(int argc, const char **argv, const char *prefix)
*/
if (advice_resolve_conflict)
die(_("You have not concluded your merge (MERGE_HEAD exists).\n"
- "Please, commit your changes before you can merge."));
+ "Please, commit your changes before you merge."));
else
die(_("You have not concluded your merge (MERGE_HEAD exists)."));
}
if (file_exists(git_path("CHERRY_PICK_HEAD"))) {
if (advice_resolve_conflict)
die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists).\n"
- "Please, commit your changes before you can merge."));
+ "Please, commit your changes before you merge."));
else
die(_("You have not concluded your cherry-pick (CHERRY_PICK_HEAD exists)."));
}