Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
doc/for-each-ref: explicitly specify option names
author
Kevin Daudt
<me@ikke.info>
Mon, 11 Sep 2017 19:33:38 +0000
(21:33 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Tue, 12 Sep 2017 02:24:46 +0000
(11:24 +0900)
For count, sort and format, only the argument names were listed under
OPTIONS, not the option names.
Add the option names to make it clear the options exist
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:
3233d51
)
diff --git
a/Documentation/git-for-each-ref.txt
b/Documentation/git-for-each-ref.txt
index ead38f777feff445c67a3f48e41175f48d377ff9..d3a0994db27005bcc0f139014cfd18f4fc4529d8 100644
(file)
--- a/
Documentation/git-for-each-ref.txt
+++ b/
Documentation/git-for-each-ref.txt
@@
-26,19
+26,25
@@
host language allowing their direct evaluation in that language.
OPTIONS
-------
OPTIONS
-------
-<count>::
+<pattern>...::
+ If one or more patterns are given, only refs are shown that
+ match against at least one pattern, either using fnmatch(3) or
+ literally, in the latter case matching completely or from the
+ beginning up to a slash.
+
+--count=<count>::
By default the command shows all refs that match
`<pattern>`. This option makes it stop after showing
that many refs.
By default the command shows all refs that match
`<pattern>`. This option makes it stop after showing
that many refs.
-<key>::
+
--sort=
<key>::
A field name to sort on. Prefix `-` to sort in
descending order of the value. When unspecified,
`refname` is used. You may use the --sort=<key> option
multiple times, in which case the last key becomes the primary
key.
A field name to sort on. Prefix `-` to sort in
descending order of the value. When unspecified,
`refname` is used. You may use the --sort=<key> option
multiple times, in which case the last key becomes the primary
key.
-<format>::
+
--format=
<format>::
A string that interpolates `%(fieldname)` from a ref being shown
and the object it points at. If `fieldname`
is prefixed with an asterisk (`*`) and the ref points
A string that interpolates `%(fieldname)` from a ref being shown
and the object it points at. If `fieldname`
is prefixed with an asterisk (`*`) and the ref points
@@
-51,12
+57,6
@@
OPTIONS
`xx`; for example `%00` interpolates to `\0` (NUL),
`%09` to `\t` (TAB) and `%0a` to `\n` (LF).
`xx`; for example `%00` interpolates to `\0` (NUL),
`%09` to `\t` (TAB) and `%0a` to `\n` (LF).
-<pattern>...::
- If one or more patterns are given, only refs are shown that
- match against at least one pattern, either using fnmatch(3) or
- literally, in the latter case matching completely or from the
- beginning up to a slash.
-
--shell::
--perl::
--python::
--shell::
--perl::
--python::