diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2009-08-29 11:05:00 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-08-29 14:08:03 -0700 |
commit | f7aec129fa78e39e200352502377f57952516f98 (patch) | |
tree | b6aa55c7e3089c2fe2da9eb1dcd1dfac4902ec2e /builtin-mv.c | |
parent | update-server-info: make builtin, use parseopt (diff) | |
download | tgif-f7aec129fa78e39e200352502377f57952516f98.tar.xz |
UI consistency: allow --force for where -f means force
git branch, checkout, clean, mv and tag all have an option -f to override
certain checks. This patch makes them accept the long option --force as
a synonym.
While we're at it, document that checkout support --quiet as synonym for
its short option -q.
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-mv.c')
-rw-r--r-- | builtin-mv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-mv.c b/builtin-mv.c index b592c367b2..1b20028c67 100644 --- a/builtin-mv.c +++ b/builtin-mv.c @@ -53,7 +53,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix) int verbose = 0, show_only = 0, force = 0, ignore_errors = 0; struct option builtin_mv_options[] = { OPT__DRY_RUN(&show_only), - OPT_BOOLEAN('f', NULL, &force, "force move/rename even if target exists"), + OPT_BOOLEAN('f', "force", &force, "force move/rename even if target exists"), OPT_BOOLEAN('k', NULL, &ignore_errors, "skip move/rename errors"), OPT_END(), }; |