Skip to content

Commit 459cf2e

Browse files
sbeyergitster
authored andcommitted
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>
1 parent 3240240 commit 459cf2e

File tree

4 files changed

+14
-1
lines changed

4 files changed

+14
-1
lines changed

Documentation/git-clean.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,11 @@ OPTIONS
3030
git-clean will refuse to run unless given -f or -n.
3131

3232
-n::
33+
--dry-run::
3334
Don't actually remove anything, just show what would be done.
3435

3536
-q::
37+
--quiet::
3638
Be quiet, only report errors, but not the files that are
3739
successfully removed.
3840

Documentation/git-count-objects.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ them, to help you decide when it is a good time to repack.
1818
OPTIONS
1919
-------
2020
-v::
21+
--verbose::
2122
In addition to the number of loose objects and disk
2223
space consumed, it reports the number of in-pack
2324
objects, number of packs, and number of objects that can be

Documentation/git-quiltimport.txt

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ preserved as the 1 line subject in the git description.
2929

3030
OPTIONS
3131
-------
32+
33+
-n::
3234
--dry-run::
3335
Walk through the patches in the series and warn
3436
if we cannot find all of the necessary information to commit

Documentation/git-remote.txt

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ git-remote - manage set of tracked repositories
99
SYNOPSIS
1010
--------
1111
[verse]
12-
'git-remote'
12+
'git-remote' [-v | --verbose]
1313
'git-remote' add [-t <branch>] [-m <master>] [-f] [--mirror] <name> <url>
1414
'git-remote' rm <name>
1515
'git-remote' show <name>
@@ -22,6 +22,14 @@ DESCRIPTION
2222
Manage the set of repositories ("remotes") whose branches you track.
2323

2424

25+
OPTIONS
26+
-------
27+
28+
-v::
29+
--verbose::
30+
Be a little more verbose and show remote url after name.
31+
32+
2533
COMMANDS
2634
--------
2735

0 commit comments

Comments
 (0)