git-for-each-ref.txt 10.9 KB
Newer Older
1 2 3 4 5 6 7 8 9
git-for-each-ref(1)
===================

NAME
----
git-for-each-ref - Output information on each ref

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>]]
15 16 17 18 19 20

DESCRIPTION
-----------

Iterate over all refs that match `<pattern>` and show them
according to the given `<format>`, after sorting them according
21
to the given set of `<key>`.  If `<count>` is given, stop after
22
showing that many refs.  The interpolated values in `<format>`
23
can optionally be quoted as string literals in the specified
24
host language allowing their direct evaluation in that language.
25 26 27 28 29 30 31 32 33 34 35

OPTIONS
-------
<count>::
	By default the command shows all refs that match
	`<pattern>`.  This option makes it stop after showing
	that many refs.

<key>::
	A field name to sort on.  Prefix `-` to sort in
	descending order of the value.  When unspecified,
36 37 38
	`refname` is used.  You may use the --sort=<key> option
	multiple times, in which case the last key becomes the primary
	key.
39 40 41 42 43 44 45

<format>::
	A string that interpolates `%(fieldname)` from the
	object pointed at by a ref being shown.  If `fieldname`
	is prefixed with an asterisk (`*`) and the ref points
	at a tag object, the value for the field in the object
	tag refers is used.  When unspecified, defaults to
46 47 48 49 50
	`%(objectname) SPC %(objecttype) TAB %(refname)`.
	It also interpolates `%%` to `%`, and `%xx` where `xx`
	are hex digits interpolates to character with hex code
	`xx`; for example `%00` interpolates to `\0` (NUL),
	`%09` to `\t` (TAB) and `%0a` to `\n` (LF).
51

52
<pattern>...::
53
	If one or more patterns are given, only refs are shown that
54
	match against at least one pattern, either using fnmatch(3) or
55 56
	literally, in the latter case matching completely or from the
	beginning up to a slash.
57

58 59 60 61
--shell::
--perl::
--python::
--tcl::
62 63 64 65 66
	If given, strings that substitute `%(fieldname)`
	placeholders are quoted as string literals suitable for
	the specified host language.  This is meant to produce
	a scriptlet that can directly be `eval`ed.

67 68
--points-at <object>::
	Only list refs which points at the given object.
69

70 71 72 73 74 75 76 77
--merged [<object>]::
	Only list refs whose tips are reachable from the
	specified commit (HEAD if not specified).

--no-merged [<object>]::
	Only list refs whose tips are not reachable from the
	specified commit (HEAD if not specified).

78
--contains [<object>]::
79
	Only list refs which contain the specified commit (HEAD if not
80 81
	specified).

82 83 84
--ignore-case::
	Sorting and filtering refs are case insensitive.

85 86 87 88 89 90 91 92 93 94
FIELD NAMES
-----------

Various values from structured fields in referenced objects can
be used to interpolate into the resulting output, or as sort
keys.

For all objects, the following names can be used:

refname::
95
	The name of the ref (the part after $GIT_DIR/).
96
	For a non-ambiguous short name of the ref append `:short`.
97
	The option core.warnAmbiguousRefs is used to select the strict
98 99 100 101
	abbreviation mode. If `lstrip=<N>` (`rstrip=<N>`) is appended, strips `<N>`
	slash-separated path components from the front (back) of the refname
	(e.g. `%(refname:lstrip=2)` turns `refs/tags/foo` into `foo` and
	`%(refname:rstrip=2)` turns `refs/tags/foo` into `refs`).
102
	If `<N>` is a negative number, strip as many path components as
103
	necessary from the specified end to leave `-<N>` path components
104
	(e.g. `%(refname:lstrip=-2)` turns
105 106
	`refs/tags/foo` into `tags/foo` and `%(refname:rstrip=-1)`
	turns `refs/tags/foo` into `refs`). When the ref does not have
107 108 109
	enough components, the result becomes an empty string if
	stripping with positive <N>, or it becomes the full refname if
	stripping with negative <N>.  Neither is an error.
110 111 112 113 114

objecttype::
	The type of the object (`blob`, `tree`, `commit`, `tag`).

objectsize::
115
	The size of the object (the same as 'git cat-file -s' reports).
116 117 118

objectname::
	The object name (aka SHA-1).
119
	For a non-ambiguous abbreviation of the object name append `:short`.
120 121 122
	For an abbreviation of the object name with desired length append
	`:short=<length>`, where the minimum length is MINIMUM_ABBREV. The
	length may be exceeded to ensure unique object names.
123

124 125
upstream::
	The name of a local ref which can be considered ``upstream''
126 127 128 129 130 131 132 133 134 135 136 137
	from the displayed ref. Respects `:short`, `:lstrip` and
	`:rstrip` in the same way as `refname` above.  Additionally
	respects `:track` to show "[ahead N, behind M]" and
	`:trackshort` to show the terse version: ">" (ahead), "<"
	(behind), "<>" (ahead and behind), or "=" (in sync). `:track`
	also prints "[gone]" whenever unknown upstream ref is
	encountered. Append `:track,nobracket` to show tracking
	information without brackets (i.e "ahead N, behind M").  Has
	no effect if the ref does not have tracking information
	associated with it.  All the options apart from `nobracket`
	are mutually exclusive, but if used together the last option
	is selected.
138

139
push::
140
	The name of a local ref which represents the `@{push}`
141
	location for the displayed ref. Respects `:short`, `:lstrip`,
142
	`:rstrip`, `:track`, and `:trackshort` options as `upstream`
143 144
	does. Produces an empty string if no `@{push}` ref is
	configured.
145

146 147 148 149
HEAD::
	'*' if HEAD matches current ref (the checked out branch), ' '
	otherwise.

150 151 152 153
color::
	Change output color.  Followed by `:<colorname>`, where names
	are described in `color.branch.*`.

154 155
align::
	Left-, middle-, or right-align the content between
156 157 158 159 160 161 162 163 164
	%(align:...) and %(end). The "align:" is followed by
	`width=<width>` and `position=<position>` in any order
	separated by a comma, where the `<position>` is either left,
	right or middle, default being left and `<width>` is the total
	length of the content with alignment. For brevity, the
	"width=" and/or "position=" prefixes may be omitted, and bare
	<width> and <position> used instead.  For instance,
	`%(align:<width>,<position>)`. If the contents length is more
	than the width then no alignment is performed. If used with
165
	`--quote` everything in between %(align:...) and %(end) is
166 167
	quoted, but if nested then only the topmost level performs
	quoting.
168

169 170 171 172 173 174 175 176 177
if::
	Used as %(if)...%(then)...%(end) or
	%(if)...%(then)...%(else)...%(end).  If there is an atom with
	value or string literal after the %(if) then everything after
	the %(then) is printed, else if the %(else) atom is used, then
	everything after %(else) is printed. We ignore space when
	evaluating the string before %(then), this is useful when we
	use the %(HEAD) atom which prints either "*" or " " and we
	want to apply the 'if' condition only on the 'HEAD' ref.
178 179 180
	Append ":equals=<string>" or ":notequals=<string>" to compare
	the value between the %(if:...) and %(then) atoms with the
	given string.
181

182 183
symref::
	The ref which the given symbolic ref refers to. If not a
184 185 186
	symbolic ref, nothing is printed. Respects the `:short`,
	`:lstrip` and `:rstrip` options in the same way as `refname`
	above.
187

188 189 190 191
In addition to the above, for commit and tag objects, the header
field names (`tree`, `parent`, `object`, `type`, and `tag`) can
be used to specify the value in the header field.

192 193 194 195 196
For commit and tag objects, the special `creatordate` and `creator`
fields will correspond to the appropriate date or name-email-date tuple
from the `committer` or `tagger` fields depending on the object type.
These are intended for working on a mix of annotated and lightweight tags.

197 198 199 200
Fields that have name-email-date tuple as its value (`author`,
`committer`, and `tagger`) can be suffixed with `name`, `email`,
and `date` to extract the named component.

201
The complete message in a commit and tag object is `contents`.
202 203 204
Its first line is `contents:subject`, where subject is the concatenation
of all lines of the commit message up to the first blank line.  The next
line is 'contents:body', where body is all of the lines after the first
205 206
blank line.  The optional GPG signature is `contents:signature`.  The
first `N` lines of the message is obtained using `contents:lines=N`.
207 208
Additionally, the trailers as interpreted by linkgit:git-interpret-trailers[1]
are obtained as 'contents:trailers'.
209

210 211
For sorting purposes, fields with numeric values sort in numeric order
(`objectsize`, `authordate`, `committerdate`, `creatordate`, `taggerdate`).
212 213
All other fields are used to sort in their byte-value order.

214 215 216
There is also an option to sort by versions, this can be done by using
the fieldname `version:refname` or its alias `v:refname`.

217 218 219 220
In any case, a field name that refers to a field inapplicable to
the object referred by the ref does not cause an error.  It
returns an empty string instead.

221
As a special case for the date-type fields, you may specify a format for
222
the date by adding `:` followed by date format name (see the
223
values the `--date` option to linkgit:git-rev-list[1] takes).
224

225 226 227 228 229 230 231 232
Some atoms like %(align) and %(if) always require a matching %(end).
We call them "opening atoms" and sometimes denote them as %($open).

When a scripting language specific quoting is in effect, everything
between a top-level opening atom and its matching %(end) is evaluated
according to the semantics of the opening atom and only its result
from the top-level is quoted.

233 234 235 236

EXAMPLES
--------

237
An example directly producing formatted text.  Show the most recent
238
3 tagged commits:
239 240 241 242

------------
#!/bin/sh

243
git for-each-ref --count=3 --sort='-*authordate' \
244 245 246 247 248 249 250 251 252
--format='From: %(*authorname) %(*authoremail)
Subject: %(*subject)
Date: %(*authordate)
Ref: %(*refname)

%(*body)
' 'refs/tags'
------------

253 254

A simple example showing the use of shell eval on the output,
255
demonstrating the use of --shell.  List the prefixes of all heads:
256 257 258
------------
#!/bin/sh

259
git for-each-ref --shell --format="ref=%(refname)" refs/heads | \
260 261 262 263 264 265 266 267 268
while read entry
do
	eval "$entry"
	echo `dirname $ref`
done
------------


A bit more elaborate report on tags, demonstrating that the format
269
may be an entire script:
270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
------------
#!/bin/sh

fmt='
	r=%(refname)
	t=%(*objecttype)
	T=${r#refs/tags/}

	o=%(*objectname)
	n=%(*authorname)
	e=%(*authoremail)
	s=%(*subject)
	d=%(*authordate)
	b=%(*body)

	kind=Tag
	if test "z$t" = z
	then
		# could be a lightweight tag
		t=%(objecttype)
		kind="Lightweight tag"
		o=%(objectname)
		n=%(authorname)
		e=%(authoremail)
		s=%(subject)
		d=%(authordate)
		b=%(body)
	fi
	echo "$kind $T points at a $t object $o"
	if test "z$t" = zcommit
	then
		echo "The commit was authored by $n $e
at $d, and titled

    $s

Its message reads as:
"
		echo "$b" | sed -e "s/^/    /"
		echo
	fi
'

313
eval=`git for-each-ref --shell --format="$fmt" \
314 315 316 317 318
	--sort='*objecttype' \
	--sort=-taggerdate \
	refs/tags`
eval "$eval"
------------
319

320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335

An example to show the usage of %(if)...%(then)...%(else)...%(end).
This prefixes the current branch with a star.

------------
git for-each-ref --format="%(if)%(HEAD)%(then)* %(else)  %(end)%(refname:short)" refs/heads/
------------


An example to show the usage of %(if)...%(then)...%(end).
This prints the authorname, if present.

------------
git for-each-ref --format="%(refname)%(if)%(authorname)%(then) Authored by: %(authorname)%(end)"
------------

336 337 338 339
SEE ALSO
--------
linkgit:git-show-ref[1]

340 341 342
GIT
---
Part of the linkgit:git[1] suite