diff options
author | Junio C Hamano <gitster@pobox.com> | 2021-06-10 12:04:23 +0900 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2021-06-10 12:04:24 +0900 |
commit | ce885c53422f8323dadeee1cc360a80dcfa0af22 (patch) | |
tree | 5fe7ff317bb7f0267b3a975ecef02ded9f1a1189 /builtin | |
parent | Merge branch 'ah/merge-usage-i18n-fix' (diff) | |
parent | stash: don't translate literal commands (diff) | |
download | tgif-ce885c53422f8323dadeee1cc360a80dcfa0af22.tar.xz |
Merge branch 'ah/stash-usage-i18n-fix'
i18n update.
* ah/stash-usage-i18n-fix:
stash: don't translate literal commands
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/stash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/stash.c b/builtin/stash.c index 01066d7085..d163fb66d2 100644 --- a/builtin/stash.c +++ b/builtin/stash.c @@ -26,7 +26,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" @@ -67,7 +67,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 }; |