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>2018-12-01 15:41:44 +0300
committerJunio C Hamano <gitster@pobox.com>2018-12-01 15:41:44 +0300
commit544d114eb2ec2fbc7be123ef29492e87c760f4c3 (patch)
tree109b835022e6991a17bb0781262721fca9d15683 /builtin
parent97b6d63717b9e9e9daa75c3ab84e119de8291f14 (diff)
parenteff199a6c086930bae91f9859d4c105b4c3e9ea7 (diff)
Merge branch 'rt/rebase-in-c-message-fix'
* rt/rebase-in-c-message-fix: builtin/rebase.c: remove superfluous space in messages
Diffstat (limited to 'builtin')
-rw-r--r--builtin/rebase.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/rebase.c b/builtin/rebase.c
index c87da417fb..b5c99ec10c 100644
--- a/builtin/rebase.c
+++ b/builtin/rebase.c
@@ -888,7 +888,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
"them"), REBASE_PRESERVE_MERGES),
OPT_BOOL(0, "rerere-autoupdate",
&options.allow_rerere_autoupdate,
- N_("allow rerere to update index with resolved "
+ N_("allow rerere to update index with resolved "
"conflict")),
OPT_BOOL('k', "keep-empty", &options.keep_empty,
N_("preserve empty commits during rebase")),
@@ -1549,7 +1549,7 @@ int cmd_rebase(int argc, const char **argv, const char *prefix)
*/
strbuf_reset(&msg);
if (!oidcmp(&merge_base, &options.orig_head)) {
- printf(_("Fast-forwarded %s to %s. \n"),
+ printf(_("Fast-forwarded %s to %s.\n"),
branch_name, options.onto_name);
strbuf_addf(&msg, "rebase finished: %s onto %s",
options.head_name ? options.head_name : "detached HEAD",