aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2020-11-30 14:49:45 -0800
committerJunio C Hamano <gitster@pobox.com>2020-11-30 14:49:45 -0800
commitfa27e2d103704340d931c5c6670be39ef6a22368 (patch)
tree2f87ac5681c427a995f3e4c879310e64d8dee05b
parent43c1c79f1f745c22a47f7263530ba5251f957f41 (diff)
parenteaf5341538b467715ea16c27e7fcf440f0117660 (diff)
downloadgit-fa27e2d103704340d931c5c6670be39ef6a22368.tar.xz
Merge branch 'km/stash-error-message-fix'
Error message fix. * km/stash-error-message-fix: stash: add missing space to an error message
-rw-r--r--builtin/stash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stash.c b/builtin/stash.c
index 24ddb1bffa..e1f8235fdd 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -419,7 +419,7 @@ static int do_apply_stash(const char *prefix, struct stash_info *info,
ret = apply_cached(&out);
strbuf_release(&out);
if (ret)
- return error(_("conflicts in index."
+ return error(_("conflicts in index. "
"Try without --index."));
discard_cache();