Skip to content

Commit 4901884

Browse files
alexhenriegitster
authored andcommitted
stash: don't translate literal commands
Signed-off-by: Alex Henrie <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 48bf2fa commit 4901884

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builtin/stash.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ static const char * const git_stash_usage[] = {
2424
N_("git stash drop [-q|--quiet] [<stash>]"),
2525
N_("git stash ( pop | apply ) [--index] [-q|--quiet] [<stash>]"),
2626
N_("git stash branch <branchname> [<stash>]"),
27-
N_("git stash clear"),
27+
"git stash clear",
2828
N_("git stash [push [-p|--patch] [-k|--[no-]keep-index] [-q|--quiet]\n"
2929
" [-u|--include-untracked] [-a|--all] [-m|--message <message>]\n"
3030
" [--pathspec-from-file=<file> [--pathspec-file-nul]]\n"
@@ -65,7 +65,7 @@ static const char * const git_stash_branch_usage[] = {
6565
};
6666

6767
static const char * const git_stash_clear_usage[] = {
68-
N_("git stash clear"),
68+
"git stash clear",
6969
NULL
7070
};
7171

0 commit comments

Comments
 (0)