Browse Source

git p4: accept -v for --verbose

The short form "-v" is common in many git commands as an
alias for "--verbose".

Signed-off-by: Pete Wyckoff <pw@padd.com>
Acked-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Pete Wyckoff 12 years ago committed by Junio C Hamano
parent
commit
b0ccc80d3c
  1. 2
      Documentation/git-p4.txt
  2. 2
      git-p4.py

2
Documentation/git-p4.txt

@ -163,7 +163,7 @@ All commands except clone accept these options. @@ -163,7 +163,7 @@ All commands except clone accept these options.
--git-dir <dir>::
Set the 'GIT_DIR' environment variable. See linkgit:git[1].

--verbose::
--verbose, -v::
Provide more progress information.

Sync options

2
git-p4.py

@ -3028,7 +3028,7 @@ def main(): @@ -3028,7 +3028,7 @@ def main():

args = sys.argv[2:]

options.append(optparse.make_option("--verbose", dest="verbose", action="store_true"))
options.append(optparse.make_option("--verbose", "-v", dest="verbose", action="store_true"))
if cmd.needsGit:
options.append(optparse.make_option("--git-dir", dest="gitdir"))


Loading…
Cancel
Save