summaryrefslogtreecommitdiff
path: root/builtin/mv.c
diff options
context:
space:
mode:
authorJeff King <peff@peff.net>2011-12-12 07:51:24 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-12-12 19:52:31 (GMT)
commit07b8738967a26dd7ab39d02b86aa805dea567319 (patch)
tree2683d25b0d76439d4cb6d0833d52cdc1ffaae63d /builtin/mv.c
parentcfe21f05bb0051aebc96ed7e805a79778f9bb117 (diff)
downloadgit-07b8738967a26dd7ab39d02b86aa805dea567319.zip
git-07b8738967a26dd7ab39d02b86aa805dea567319.tar.gz
git-07b8738967a26dd7ab39d02b86aa805dea567319.tar.bz2
mv: honor --verbose flag
The code for a verbose flag has been here since "git mv" was converted to C many years ago, but actually getting the "-v" flag from the command line was accidentally lost in the transition. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/mv.c')
-rw-r--r--builtin/mv.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/builtin/mv.c b/builtin/mv.c
index 40f33ca..449f30a 100644
--- a/builtin/mv.c
+++ b/builtin/mv.c
@@ -55,6 +55,7 @@ int cmd_mv(int argc, const char **argv, const char *prefix)
int i, newfd;
int verbose = 0, show_only = 0, force = 0, ignore_errors = 0;
struct option builtin_mv_options[] = {
+ OPT__VERBOSE(&verbose, "be verbose"),
OPT__DRY_RUN(&show_only, "dry run"),
OPT__FORCE(&force, "force move/rename even if target exists"),
OPT_BOOLEAN('k', NULL, &ignore_errors, "skip move/rename errors"),