From 4901884a23c6eaabb0738bddc440f4155f81b973 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Sun, 16 May 2021 15:57:04 -0600 Subject: [PATCH] stash: don't translate literal commands Signed-off-by: Alex Henrie Signed-off-by: Junio C Hamano --- builtin/stash.c | 4 ++-- 1 file 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] []"), N_("git stash ( pop | apply ) [--index] [-q|--quiet] []"), N_("git stash branch []"), - 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 ]\n" " [--pathspec-from-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 };