Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2023-05-10 02:45:46 +0300
committerJunio C Hamano <gitster@pobox.com>2023-05-10 02:45:46 +0300
commit461eea3fb88b92ce174a2a38ed12b22cd390ee81 (patch)
tree6e4b65611239b181824f007344fd1d4db9e94167 /sequencer.c
parentd6b7f01cd70a4d9d55de8126c2f2678e2478dce8 (diff)
parentb734fe49fddb4bbd02f471fa3b11d3605bd6921d (diff)
Merge branch 'ob/messages-capitalize-exception'
Message update. * ob/messages-capitalize-exception: messages: capitalization and punctuation exceptions
Diffstat (limited to 'sequencer.c')
-rw-r--r--sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sequencer.c b/sequencer.c
index 6ab813cbbd..b553b49fbb 100644
--- a/sequencer.c
+++ b/sequencer.c
@@ -3627,13 +3627,13 @@ static int do_exec(struct repository *r, const char *command_line)
"\n"),
command_line,
dirty ? _("and made changes to the index and/or the "
- "working tree\n") : "");
+ "working tree.\n") : "");
if (status == 127)
/* command not found */
status = 1;
} else if (dirty) {
warning(_("execution succeeded: %s\nbut "
- "left changes to the index and/or the working tree\n"
+ "left changes to the index and/or the working tree.\n"
"Commit or stash your changes, and then run\n"
"\n"
" git rebase --continue\n"