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:
authorKyle Meyer <kyle@kyleam.com>2020-11-24 03:52:12 +0300
committerJunio C Hamano <gitster@pobox.com>2020-11-24 23:56:31 +0300
commiteaf5341538b467715ea16c27e7fcf440f0117660 (patch)
tree0d3cbd2af45ed71183263ba762d2c9a30fac22e9 /builtin/stash.c
parentc9808fa014aa88cc306705d308d1d9065d567ddc (diff)
stash: add missing space to an error message
Restore a space that was lost in 8a0fc8d19d (stash: convert apply to builtin, 2019-02-25). Signed-off-by: Kyle Meyer <kyle@kyleam.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/stash.c')
-rw-r--r--builtin/stash.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/stash.c b/builtin/stash.c
index fde6397caa..5fe2af2394 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -418,7 +418,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();