diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-02-10 21:52:25 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-02-10 21:52:25 +0100 |
commit | 65fecf0c08ceb5dd492281aa5894df64f898a118 (patch) | |
tree | 9eee081e92578e75051420d52e0dbd9c26acf227 /builtin | |
parent | Merge branch 'ew/complete-svn-authorship-options' (diff) | |
parent | worktree: fix option descriptions for `prune` (diff) | |
download | git-65fecf0c08ceb5dd492281aa5894df64f898a118.tar.xz git-65fecf0c08ceb5dd492281aa5894df64f898a118.zip |
Merge branch 'ps/worktree-prune-help-fix'
Incorrect usage help message for "git worktree prune" has been fixed.
* ps/worktree-prune-help-fix:
worktree: fix option descriptions for `prune`
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/worktree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c index 9a97e37a3f..831fe058a5 100644 --- a/builtin/worktree.c +++ b/builtin/worktree.c @@ -125,9 +125,9 @@ static int prune(int ac, const char **av, const char *prefix) { struct option options[] = { OPT__DRY_RUN(&show_only, N_("do not remove, show only")), - OPT__VERBOSE(&verbose, N_("report pruned objects")), + OPT__VERBOSE(&verbose, N_("report pruned working trees")), OPT_EXPIRY_DATE(0, "expire", &expire, - N_("expire objects older than <time>")), + N_("expire working trees older than <time>")), OPT_END() }; |