summaryrefslogtreecommitdiff
path: root/builtin/stash.c
diff options
context:
space:
mode:
authorAlex Henrie <alexhenrie24@gmail.com>2021-05-16 15:57:04 -0600
committerJunio C Hamano <gitster@pobox.com>2021-05-17 07:21:04 +0900
commit4901884a23c6eaabb0738bddc440f4155f81b973 (patch)
tree8f2003043020f2f930eecfb497e66ffc7c44f876 /builtin/stash.c
parent48bf2fa8bad054d66bd79c6ba903c89c704201f7 (diff)
downloadgit-4901884a23c6eaabb0738bddc440f4155f81b973.tar.gz
stash: don't translate literal commands
Signed-off-by: Alex Henrie <alexhenrie24@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/stash.c')
-rw-r--r--builtin/stash.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/stash.c b/builtin/stash.c
index ba774cce67..df451b7483 100644
--- a/builtin/stash.c
+++ b/builtin/stash.c
@@ -24,7 +24,7 @@ static const char * const git_stash_usage[] = {
N_("git stash drop [-q|--quiet] [<stash>]"),
N_("git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]"),
N_("git stash branch <branchname> [<stash>]"),
- N_("git stash clear"),
+ "git stash clear",
N_("git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
" [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"
" [--pathspec-from-file=<file> [--pathspec-file-nul]]\n"
@@ -65,7 +65,7 @@ static const char * const git_stash_branch_usage[] = {
};
static const char * const git_stash_clear_usage[] = {
- N_("git stash clear"),
+ "git stash clear",
NULL
};