doc/for-each-ref: consistently use '=' to between argument names and values
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>
Kevin Daudt committed
Sep 11, 2017 at 21:33 UTC
3233d51d709b3a3f8e78295adfe64ef36d251425
1 file changed
+8
-7
Documentation/git-for-each-ref.txt
+8
-7
@@ -10,8 +10,9 @@ SYNOPSIS
10
[verse]
11
'git for-each-ref' [--count=<count>] [--shell|--perl|--python|--tcl]
12
[(--sort=<key>)...] [--format=<format>] [<pattern>...]
13
- [--points-at <object>] [(--merged | --no-merged) [<object>]]
14
- [--contains [<object>]] [--no-contains [<object>]]
13
+ [--points-at=<object>]
14
+ (--merged[=<object>] | --no-merged[=<object>])
15
+ [--contains[=<object>]] [--no-contains[=<object>]]
16
17
DESCRIPTION
18
-----------
@@ -65,24 +66,24 @@ OPTIONS
66
the specified host language. This is meant to produce
67
a scriptlet that can directly be `eval`ed.
68
68
---points-at <object>::
69
+--points-at=<object>::
70
Only list refs which points at the given object.
71
71
---merged [<object>]::
72
+--merged[=<object>]::
73
Only list refs whose tips are reachable from the
74
specified commit (HEAD if not specified),
75
incompatible with `--no-merged`.
76
76
---no-merged [<object>]::
77
+--no-merged[=<object>]::
78
Only list refs whose tips are not reachable from the
79
specified commit (HEAD if not specified),
80
incompatible with `--merged`.
81
81
---contains [<object>]::
82
+--contains[=<object>]::
83
Only list refs which contain the specified commit (HEAD if not
84
specified).
85
85
---no-contains [<object>]::
86
+--no-contains[=<object>]::
87
Only list refs which don't contain the specified commit (HEAD
88
if not specified).
89