Skip to content

Commit

Permalink
doc/for-each-ref: consistently use '=' to between argument names and …
Browse files Browse the repository at this point in the history
…values

The synopsis and description inconsistently add a '=' between the
argument name and it's value. Make this consistent.

Signed-off-by: Kevin Daudt <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
Ikke authored and gitster committed Sep 12, 2017
1 parent 794b7e1 commit 3233d51
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions Documentation/git-for-each-ref.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ SYNOPSIS
[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
-----------
Expand Down Expand Up @@ -65,24 +66,24 @@ OPTIONS
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.

--merged [<object>]::
--merged[=<object>]::
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`.

--contains [<object>]::
--contains[=<object>]::
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).

Expand Down

0 comments on commit 3233d51

Please sign in to comment.