2010-10-08 19:31:18 +02:00
|
|
|
--pretty[=<format>]::
|
|
|
|
--format=<format>::
|
2007-05-14 01:25:45 +02:00
|
|
|
|
2007-07-24 20:59:47 +02:00
|
|
|
Pretty-print the contents of the commit logs in a given format,
|
2007-05-14 01:25:45 +02:00
|
|
|
where '<format>' can be one of 'oneline', 'short', 'medium',
|
2015-01-16 02:32:57 +01:00
|
|
|
'full', 'fuller', 'email', 'raw', 'format:<string>'
|
|
|
|
and 'tformat:<string>'. When '<format>' is none of the above,
|
|
|
|
and has '%placeholder' in it, it acts as if
|
|
|
|
'--pretty=tformat:<format>' were given.
|
|
|
|
+
|
|
|
|
See the "PRETTY FORMATS" section for some additional details for each
|
|
|
|
format. When '=<format>' part is omitted, it defaults to 'medium'.
|
2008-03-02 10:05:53 +01:00
|
|
|
+
|
|
|
|
Note: you can specify the default pretty format in the repository
|
|
|
|
configuration (see linkgit:git-config[1]).
|
2007-05-14 01:25:45 +02:00
|
|
|
|
2007-06-16 21:03:39 +02:00
|
|
|
--abbrev-commit::
|
|
|
|
Instead of showing the full 40-byte hexadecimal commit object
|
2009-01-12 21:02:07 +01:00
|
|
|
name, show only a partial prefix. Non default number of
|
2007-06-16 21:03:39 +02:00
|
|
|
digits can be specified with "--abbrev=<n>" (which also modifies
|
|
|
|
diff output, if it is displayed).
|
|
|
|
+
|
|
|
|
This should make "--pretty=oneline" a whole lot more readable for
|
|
|
|
people using 80-column terminals.
|
|
|
|
|
2011-05-18 19:56:04 +02:00
|
|
|
--no-abbrev-commit::
|
|
|
|
Show the full 40-byte hexadecimal commit object name. This negates
|
|
|
|
`--abbrev-commit` and those options which imply it such as
|
|
|
|
"--oneline". It also overrides the 'log.abbrevCommit' variable.
|
|
|
|
|
2009-02-24 10:59:16 +01:00
|
|
|
--oneline::
|
|
|
|
This is a shorthand for "--pretty=oneline --abbrev-commit"
|
|
|
|
used together.
|
|
|
|
|
2013-08-03 00:16:40 +02:00
|
|
|
--encoding=<encoding>::
|
2007-05-14 01:25:45 +02:00
|
|
|
The commit objects record the encoding used for the log message
|
|
|
|
in their encoding header; this option can be used to tell the
|
|
|
|
command to re-code the commit log message in the encoding
|
|
|
|
preferred by the user. For non plumbing commands this
|
2015-06-17 20:46:08 +02:00
|
|
|
defaults to UTF-8. Note that if an object claims to be encoded
|
|
|
|
in `X` and we are outputting in `X`, we will output the object
|
|
|
|
verbatim; this means that invalid sequences in the original
|
|
|
|
commit may be copied to the output.
|
2010-01-20 22:59:36 +01:00
|
|
|
|
2011-03-30 02:57:19 +02:00
|
|
|
--notes[=<ref>]::
|
2010-01-20 22:59:36 +01:00
|
|
|
Show the notes (see linkgit:git-notes[1]) that annotate the
|
|
|
|
commit, when showing the commit log message. This is the default
|
|
|
|
for `git log`, `git show` and `git whatchanged` commands when
|
2014-04-01 00:11:44 +02:00
|
|
|
there is no `--pretty`, `--format`, or `--oneline` option given
|
2011-03-30 02:57:19 +02:00
|
|
|
on the command line.
|
|
|
|
+
|
|
|
|
By default, the notes shown are from the notes refs listed in the
|
|
|
|
'core.notesRef' and 'notes.displayRef' variables (or corresponding
|
|
|
|
environment overrides). See linkgit:git-config[1] for more details.
|
|
|
|
+
|
|
|
|
With an optional '<ref>' argument, show this notes ref instead of the
|
|
|
|
default notes ref(s). The ref is taken to be in `refs/notes/` if it
|
|
|
|
is not qualified.
|
2010-03-12 18:04:26 +01:00
|
|
|
+
|
2011-03-30 02:57:19 +02:00
|
|
|
Multiple --notes options can be combined to control which notes are
|
|
|
|
being displayed. Examples: "--notes=foo" will show only notes from
|
|
|
|
"refs/notes/foo"; "--notes=foo --notes" will show both notes from
|
|
|
|
"refs/notes/foo" and from the default notes ref(s).
|
2010-03-12 18:04:26 +01:00
|
|
|
|
2011-03-30 02:57:19 +02:00
|
|
|
--no-notes::
|
|
|
|
Do not show notes. This negates the above `--notes` option, by
|
|
|
|
resetting the list of notes refs from which notes are shown.
|
|
|
|
Options are parsed in the order given on the command line, so e.g.
|
|
|
|
"--notes --notes=foo --no-notes --notes=bar" will only show notes
|
|
|
|
from "refs/notes/bar".
|
|
|
|
|
|
|
|
--show-notes[=<ref>]::
|
2010-03-12 18:04:26 +01:00
|
|
|
--[no-]standard-notes::
|
2011-03-30 02:57:19 +02:00
|
|
|
These options are deprecated. Use the above --notes/--no-notes
|
|
|
|
options instead.
|
2012-09-20 10:10:38 +02:00
|
|
|
|
|
|
|
--show-signature::
|
|
|
|
Check the validity of a signed commit object by passing the signature
|
|
|
|
to `gpg --verify` and show the output.
|