Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
doc/for-each-ref: consistently use '=' to between argument names and values
author
Kevin Daudt
<me@ikke.info>
Mon, 11 Sep 2017 19:33:37 +0000
(21:33 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 12 Sep 2017 02:23:38 +0000
(11:23 +0900)
The synopsis and description inconsistently add a '=' between the
argument name and it's value. Make this consistent.
Signed-off-by: Kevin Daudt <me@ikke.info>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-for-each-ref.txt
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
794b7e1
)
diff --git
a/Documentation/git-for-each-ref.txt
b/Documentation/git-for-each-ref.txt
index e8772e532c0c4a5aefd9232fdc057045d6d58289..ead38f777feff445c67a3f48e41175f48d377ff9 100644
(file)
--- a/
Documentation/git-for-each-ref.txt
+++ b/
Documentation/git-for-each-ref.txt
@@
-10,8
+10,9
@@
SYNOPSIS
[verse]
'git for-each-ref' [--count=<count>] [--shell|--perl|--python|--tcl]
[(--sort=<key>)...] [--format=<format>] [<pattern>...]
[verse]
'git for-each-ref' [--count=<count>] [--shell|--perl|--python|--tcl]
[(--sort=<key>)...] [--format=<format>] [<pattern>...]
- [--points-at <object>] [(--merged | --no-merged) [<object>]]
- [--contains [<object>]] [--no-contains [<object>]]
+ [--points-at=<object>]
+ (--merged[=<object>] | --no-merged[=<object>])
+ [--contains[=<object>]] [--no-contains[=<object>]]
DESCRIPTION
-----------
DESCRIPTION
-----------
@@
-65,24
+66,24
@@
OPTIONS
the specified host language. This is meant to produce
a scriptlet that can directly be `eval`ed.
the specified host language. This is meant to produce
a scriptlet that can directly be `eval`ed.
---points-at
<object>::
+--points-at
=
<object>::
Only list refs which points at the given object.
Only list refs which points at the given object.
---merged
[
<object>]::
+--merged
[=
<object>]::
Only list refs whose tips are reachable from the
specified commit (HEAD if not specified),
incompatible with `--no-merged`.
Only list refs whose tips are reachable from the
specified commit (HEAD if not specified),
incompatible with `--no-merged`.
---no-merged
[
<object>]::
+--no-merged
[=
<object>]::
Only list refs whose tips are not reachable from the
specified commit (HEAD if not specified),
incompatible with `--merged`.
Only list refs whose tips are not reachable from the
specified commit (HEAD if not specified),
incompatible with `--merged`.
---contains
[
<object>]::
+--contains
[=
<object>]::
Only list refs which contain the specified commit (HEAD if not
specified).
Only list refs which contain the specified commit (HEAD if not
specified).
---no-contains
[
<object>]::
+--no-contains
[=
<object>]::
Only list refs which don't contain the specified commit (HEAD
if not specified).
Only list refs which don't contain the specified commit (HEAD
if not specified).