Docs: add some long/short options

Namely:

 git-clean.txt: --dry-run --quiet
 git-count-objects.txt: --verbose
 git-quiltimport.txt: -n
 git-remote.txt: -v --verbose

Signed-off-by: Stephan Beyer <s-beyer@gmx.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Stephan Beyer 2008-06-08 03:36:10 +02:00 committed by Junio C Hamano
parent 3240240ff4
commit 459cf2e985
4 changed files with 14 additions and 1 deletions

View File

@ -30,9 +30,11 @@ OPTIONS
git-clean will refuse to run unless given -f or -n. git-clean will refuse to run unless given -f or -n.
-n:: -n::
--dry-run::
Don't actually remove anything, just show what would be done. Don't actually remove anything, just show what would be done.
-q:: -q::
--quiet::
Be quiet, only report errors, but not the files that are Be quiet, only report errors, but not the files that are
successfully removed. successfully removed.

View File

@ -18,6 +18,7 @@ them, to help you decide when it is a good time to repack.
OPTIONS OPTIONS
------- -------
-v:: -v::
--verbose::
In addition to the number of loose objects and disk In addition to the number of loose objects and disk
space consumed, it reports the number of in-pack space consumed, it reports the number of in-pack
objects, number of packs, and number of objects that can be objects, number of packs, and number of objects that can be

View File

@ -29,6 +29,8 @@ preserved as the 1 line subject in the git description.
OPTIONS OPTIONS
------- -------
-n::
--dry-run:: --dry-run::
Walk through the patches in the series and warn Walk through the patches in the series and warn
if we cannot find all of the necessary information to commit if we cannot find all of the necessary information to commit

View File

@ -9,7 +9,7 @@ git-remote - manage set of tracked repositories
SYNOPSIS SYNOPSIS
-------- --------
[verse] [verse]
'git-remote' 'git-remote' [-v | --verbose]
'git-remote' add [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url> 'git-remote' add [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>
'git-remote' rm <name> 'git-remote' rm <name>
'git-remote' show <name> 'git-remote' show <name>
@ -22,6 +22,14 @@ DESCRIPTION
Manage the set of repositories ("remotes") whose branches you track. Manage the set of repositories ("remotes") whose branches you track.
OPTIONS
-------
-v::
--verbose::
Be a little more verbose and show remote url after name.
COMMANDS COMMANDS
-------- --------