diff options
author | Junio C Hamano <gitster@pobox.com> | 2020-11-30 14:49:45 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-11-30 14:49:45 -0800 |
commit | fa27e2d103704340d931c5c6670be39ef6a22368 (patch) | |
tree | 2f87ac5681c427a995f3e4c879310e64d8dee05b | |
parent | Merge branch 'hn/sleep-millisec-decl' (diff) | |
parent | stash: add missing space to an error message (diff) | |
download | tgif-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.c | 2 |
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(); |