Besides specifying a range of commits that should be listed using the special notations explained in the description, additional commit limiting may be applied.
Using more options generally further limits the output (e.g. --since=
<date1> limits to commits newer than <date1>, and using it with --grep=
<pattern> further limits to commits whose log message has a line that matches <pattern>), unless otherwise noted.
Note that these are applied before commit ordering and formatting options, such as --reverse
.
Limit the number of commits to output.
Skip number commits before starting to show the commit output.
Show commits more recent than a specific date.
Show all commits more recent than a specific date. This visits all commits in the range, rather than stopping at the first commit which is older than a specific date.
Show commits older than a specific date.
Limit the commits output to specified time range.
Limit the commits output to ones with author/committer header lines that match the specified pattern (regular expression). With more than one --author=
<pattern>, commits whose author matches any of the given patterns are chosen (similarly for multiple --committer=
<pattern>).
Limit the commits output to ones with reflog entries that match the specified pattern (regular expression). With more than one --grep-reflog
, commits whose reflog message matches any of the given patterns are chosen. It is an error to use this option unless --walk-reflogs
is in use.
Limit the commits output to ones with a log message that matches the specified pattern (regular expression). With more than one --grep=
<pattern>, commits whose message matches any of the given patterns are chosen (but see --all-match
).
Limit the commits output to ones that match all given --grep
, instead of ones that match at least one.
Limit the commits output to ones with a log message that do not match the pattern specified with --grep=
<pattern>.
Match the regular expression limiting patterns without regard to letter case.
Consider the limiting patterns to be basic regular expressions; this is the default.
Consider the limiting patterns to be extended regular expressions instead of the default basic regular expressions.
Consider the limiting patterns to be fixed strings (don’t interpret pattern as a regular expression).
Consider the limiting patterns to be Perl-compatible regular expressions.
Support for these types of regular expressions is an optional compile-time dependency. If Git wasn’t compiled with support for them providing this option will cause it to die.
Stop when a given path disappears from the tree.
Print only merge commits. This is exactly the same as --min-parents=2
.
Do not print commits with more than one parent. This is exactly the same as --max-parents=1
.
Show only commits which have at least (or at most) that many parent commits. In particular, --max-parents=1
is the same as --no-merges
, --min-parents=2
is the same as --merges
. --max-parents=0
gives all root commits and --min-parents=3
all octopus merges.
--no-min-parents
and --no-max-parents
reset these limits (to no limit) again. Equivalent forms are --min-parents=0
(any commit has 0 or more parents) and --max-parents=-1
(negative numbers denote no upper limit).
When finding commits to include, follow only the first parent commit upon seeing a merge commit. This option can give a better overview when viewing the evolution of a particular topic branch, because merges into a topic branch tend to be only about adjusting to updated upstream from time to time, and this option allows you to ignore the individual commits brought in to your history by such a merge.
When finding commits to exclude (with a ^), follow only the first parent commit upon seeing a merge commit. This can be used to find the set of changes in a topic branch from the point where it diverged from the remote branch, given that arbitrary merges can be valid topic branch changes.
Reverses the meaning of the ^ prefix (or lack thereof) for all following revision specifiers, up to the next --not
. When used on the command line before --stdin, the revisions passed through stdin will not be affected by it. Conversely, when passed via standard input, the revisions passed on the command line will not be affected by it.
Pretend as if all the refs in refs/
, along with HEAD
, are listed on the command line as <commit>.
Pretend as if all the refs in refs/heads
are listed on the command line as <commit>. If <pattern> is given, limit branches to ones matching given shell glob. If pattern lacks ?, *, or [, /* at the end is implied.
Pretend as if all the refs in refs/tags
are listed on the command line as <commit>. If <pattern> is given, limit tags to ones matching given shell glob. If pattern lacks ?, *, or [, /* at the end is implied.
Pretend as if all the refs in refs/remotes
are listed on the command line as <commit>. If <pattern> is given, limit remote-tracking branches to ones matching given shell glob. If pattern lacks ?, *, or [, /* at the end is implied.
Pretend as if all the refs matching shell glob <glob-pattern> are listed on the command line as <commit>. Leading refs/, is automatically prepended if missing. If pattern lacks ?, *, or [, /* at the end is implied.
Do not include refs matching <glob-pattern> that the next --all
, --branches
, --tags
, --remotes
, or --glob
would otherwise consider. Repetitions of this option accumulate exclusion patterns up to the next --all
, --branches
, --tags
, --remotes
, or --glob
option (other options or arguments do not clear accumulated patterns).
The patterns given should not begin with refs/heads
, refs/tags
, or refs/remotes
when applied to --branches
, --tags
, or --remotes
, respectively, and they must begin with refs/
when applied to --glob
or --all
. If a trailing /* is intended, it must be given explicitly.
Do not include refs that would be hidden by git-fetch
, git-receive-pack
or git-upload-pack
by consulting the appropriate fetch.hideRefs
, receive.hideRefs
or uploadpack.hideRefs
configuration along with transfer.hideRefs
(see git-config[1]). This option affects the next pseudo-ref option --all
or --glob
and is cleared after processing them.
Pretend as if all objects mentioned by reflogs are listed on the command line as <commit>.
Pretend as if all objects mentioned as ref tips of alternate repositories were listed on the command line. An alternate repository is any repository whose object directory is specified in objects/info/alternates
. The set of included objects may be modified by core.alternateRefsCommand
, etc. See git-config[1].
By default, all working trees will be examined by the following options when there are more than one (see git-worktree[1]): --all
, --reflog
and --indexed-objects
. This option forces them to examine the current working tree only.
Upon seeing an invalid object name in the input, pretend as if the bad input was not given.
In addition to getting arguments from the command line, read them from standard input as well. This accepts commits and pseudo-options like --all
and --glob=
. When a --
separator is seen, the following input is treated as paths and used to limit the result. Flags like --not
which are read via standard input are only respected for arguments passed in the same way and will not influence any subsequent command line arguments.
Don’t print anything to standard output. This form is primarily meant to allow the caller to test the exit status to see if a range of objects is fully connected (or not). It is faster than redirecting stdout to /dev/null
as the output does not have to be formatted.
Suppress normal output; instead, print the sum of the bytes used for on-disk storage by the selected commits or objects. This is equivalent to piping the output into git
cat-file
--batch-check='%
(objectsize:disk
), except that it runs much faster (especially with --use-bitmap-index
). See the CAVEATS
section in git-cat-file[1] for the limitations of what "on-disk storage" means. With the optional value human
, on-disk storage size is shown in human-readable string(e.g. 12.24 Kib, 3.50 Mib).
Like --cherry-pick
(see below) but mark equivalent commits with =
rather than omitting them, and inequivalent ones with +
.
Omit any commit that introduces the same change as another commit on the “other side” when the set of commits are limited with symmetric difference.
For example, if you have two branches, A
and B
, a usual way to list all commits on only one side of them is with --left-right
(see the example below in the description of the --left-right
option). However, it shows the commits that were cherry-picked from the other branch (for example, “3rd on b” may be cherry-picked from branch A). With this option, such pairs of commits are excluded from the output.
List only commits on the respective side of a symmetric difference, i.e. only those which would be marked < resp. > by --left-right
.
For example, --cherry-pick
--right-only
A...B
omits those commits from B
which are in A
or are patch-equivalent to a commit in A
. In other words, this lists the +
commits from git
cherry
A
B
. More precisely, --cherry-pick
--right-only
--no-merges
gives the exact list.
A synonym for --right-only
--cherry-mark
--no-merges
; useful to limit the output to the commits on our side and mark those that have been applied to the other side of a forked history with git
log
--cherry
upstream...mybranch
, similar to git
cherry
upstream
mybranch
.
Instead of walking the commit ancestry chain, walk reflog entries from the most recent one to older ones. When this option is used you cannot specify commits to exclude (that is, ^commit, commit1..commit2, and commit1...commit2 notations cannot be used).
With --pretty
format other than oneline
and reference
(for obvious reasons), this causes the output to have two extra lines of information taken from the reflog. The reflog designator in the output may be shown as ref@{
<Nth>}
(where <Nth> is the reverse-chronological index in the reflog) or as ref@{
<timestamp>}
(with the <timestamp> for that entry), depending on a few rules:
If the starting point is specified as ref@{
<Nth>}
, show the index format.
If the starting point was specified as ref@{now}
, show the timestamp format.
If neither was used, but --date
was given on the command line, show the timestamp in the format requested by --date
.
Otherwise, show the index format.
Under --pretty=oneline
, the commit message is prefixed with this information on the same line. This option cannot be combined with --reverse
. See also git-reflog[1].
Under --pretty=reference
, this information will not be shown at all.
Show commits touching conflicted paths in the range HEAD...
<other>, where <other> is the first existing pseudoref in MERGE_HEAD
, CHERRY_PICK_HEAD
, REVERT_HEAD
or REBASE_HEAD
. Only works when the index has unmerged entries. This option can be used to show relevant commits when resolving conflicts from a 3-way merge.
Output excluded boundary commits. Boundary commits are prefixed with -
.
Try to speed up the traversal using the pack bitmap index (if one is available). Note that when traversing with --objects
, trees and blobs will not have their associated path printed.
Show progress reports on stderr as objects are considered. The <header> text will be printed with each progress update.
Instead of being newline-delimited, each outputted object and its accompanying metadata is delimited using NUL bytes. Output is printed in the following form:
<OID> NUL [<token>=<value> NUL]...
Additional object metadata, such as object paths or boundary objects, is printed using the <token>=
<value> form. Token values are printed as-is without any encoding/truncation. An OID entry never contains a = character and thus is used to signal the start of a new object record. Examples:
<OID> NUL <OID> NUL path=<path> NUL <OID> NUL boundary=yes NUL <OID> NUL missing=yes NUL [<token>=<value> NUL]...
This mode is only compatible with the --objects
, --boundary
, and --missing
output options.
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4