summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-02-10 20:52:25 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-02-10 20:52:25 (GMT)
commit65fecf0c08ceb5dd492281aa5894df64f898a118 (patch)
tree9eee081e92578e75051420d52e0dbd9c26acf227 /builtin
parentf7490fdf855916a4014faeb4fa328239c7eb945b (diff)
parent2488dcab22cee343fe35d9951160f0966a45fdb3 (diff)
downloadgit-65fecf0c08ceb5dd492281aa5894df64f898a118.zip
git-65fecf0c08ceb5dd492281aa5894df64f898a118.tar.gz
git-65fecf0c08ceb5dd492281aa5894df64f898a118.tar.bz2
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/builtin/worktree.c b/builtin/worktree.c
index 9a97e37..831fe05 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()
};