aboutsummaryrefslogtreecommitdiff
path: root/builtin/prune.c
diff options
context:
space:
mode:
authorRené Scharfe <rene.scharfe@lsrfire.ath.cx>2010-08-06 22:28:05 +0200
committerJunio C Hamano <gitster@pobox.com>2010-08-09 10:13:18 -0700
commit24aea033138561e5501ee5dfb3459f3ae4940625 (patch)
tree5d975138488764874f1617424265d3d24297b3df /builtin/prune.c
parente93487d2f007176804e89042f9f199628e45c864 (diff)
downloadgit-24aea033138561e5501ee5dfb3459f3ae4940625.tar.gz
git-24aea033138561e5501ee5dfb3459f3ae4940625.tar.xz
prune: allow --dry-run for -n and --verbose for -v
For consistency with other git commands, let git prune accept the long options --dry-run and --verbose for the respective short ones -n and -v. Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/prune.c')
-rw-r--r--builtin/prune.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/builtin/prune.c b/builtin/prune.c
index 81f915ec3..99218ba49 100644
--- a/builtin/prune.c
+++ b/builtin/prune.c
@@ -125,10 +125,9 @@ int cmd_prune(int argc, const char **argv, const char *prefix)
{
struct rev_info revs;
const struct option options[] = {
- OPT_BOOLEAN('n', NULL, &show_only,
+ OPT_BOOLEAN('n', "dry-run", &show_only,
"do not remove, show only"),
- OPT_BOOLEAN('v', NULL, &verbose,
- "report pruned objects"),
+ OPT_BOOLEAN('v', "verbose", &verbose, "report pruned objects"),
OPT_DATE(0, "expire", &expire,
"expire objects older than <time>"),
OPT_END()