Skip to content

Commit 461eea3

Browse files
committed
Merge branch 'ob/messages-capitalize-exception'
Message update. * ob/messages-capitalize-exception: messages: capitalization and punctuation exceptions
2 parents d6b7f01 + b734fe4 commit 461eea3

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

builtin/pull.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1047,7 +1047,7 @@ int cmd_pull(int argc, const char **argv, const char *prefix)
10471047
if (!opt_autostash)
10481048
require_clean_work_tree(the_repository,
10491049
N_("pull with rebase"),
1050-
_("please commit or stash them."), 1, 0);
1050+
_("Please commit or stash them."), 1, 0);
10511051

10521052
if (get_rebase_fork_point(&rebase_fork_point, repo, *refspecs))
10531053
oidclr(&rebase_fork_point);

sequencer.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3627,13 +3627,13 @@ static int do_exec(struct repository *r, const char *command_line)
36273627
"\n"),
36283628
command_line,
36293629
dirty ? _("and made changes to the index and/or the "
3630-
"working tree\n") : "");
3630+
"working tree.\n") : "");
36313631
if (status == 127)
36323632
/* command not found */
36333633
status = 1;
36343634
} else if (dirty) {
36353635
warning(_("execution succeeded: %s\nbut "
3636-
"left changes to the index and/or the working tree\n"
3636+
"left changes to the index and/or the working tree.\n"
36373637
"Commit or stash your changes, and then run\n"
36383638
"\n"
36393639
" git rebase --continue\n"

0 commit comments

Comments
 (0)