Git - gitk Documentation (original) (raw)
To control which revisions to show, gitk supports most options applicable to the git rev-list command. It also supports a few options applicable to the git diff-* commands to control how the changes each commit introduces are shown. Finally, it supports some gitk-specific options.
gitk generally only understands options with arguments in the_stuck_ form (see gitcli[7]) due to limitations in the command-line parser.
rev-list options and arguments
This manual page describes only the most frequently used options. Seegit-rev-list[1] for a complete list.
Show all refs (branches, tags, etc.).
Pretend as if all the branches (tags, remote branches, resp.) are listed on the command line as . If __is given, limit refs to ones matching given shell glob. If pattern lacks ?, *, or [, /* at the end is implied.
Show commits more recent than a specific date.
Show commits older than a specific date.
Sort commits by date when possible.
After an attempt to merge stops with conflicts, show the commits on the history between two branches (i.e. the HEAD and the MERGE_HEAD) that modify the conflicted files and do not exist on all the heads being merged.
Mark which side of a symmetric difference a commit is reachable from. Commits from the left side are prefixed with a <
symbol and those from the right with a >
symbol.
When filtering history with
Additional option to --full-history
to remove some needless merges from the resulting history, as there are no selected commits contributing to this merge. (See "History simplification" in git-log[1] for a more detailed explanation.)
When given a range of commits to display (e.g. commit1..commit2 or commit2 ^commit1), only display commits that exist directly on the ancestry chain between the commit1 and commit2, i.e. commits that are both descendants of commit1, and ancestors of commit2. (See "History simplification" in git-log[1] for a more detailed explanation.)
Trace the evolution of the line range given by ,, or by the function name regex , within the . You may not give any pathspec limiters. This is currently limited to a walk starting from a single revision, i.e., you may only give zero or one positive revision arguments, and__ and (or ) must exist in the starting revision. You can specify this option more than once. Implies --patch
. Patch output can be suppressed using --no-patch
, but other diff formats (namely --raw
, --numstat
, --shortstat
, --dirstat
, --summary
,--name-only
, --name-status
, --check
) are not currently implemented.
and can take one of these forms:
- number
If or is a number, it specifies an absolute line number (lines count from 1). /regex/
This form will use the first line matching the given POSIX regex. If is a regex, it will search from the end of the previous-L
range, if any, otherwise from the start of file. If is^/regex/
, it will search from the start of file. If is a regex, it will search starting at the line given by .- +offset or -offset
This is only valid for and will specify a number of lines before or after the line given by .
If :<funcname>
is given in place of and , it is a regular expression that denotes the range from the first funcname line that matches , up to the next funcname line. :<funcname>
searches from the end of the previous -L
range, if any, otherwise from the start of file. ^:<funcname>
searches from the start of file. The function names are determined in the same way as git diff
works out patch hunk headers (see _Defining a custom hunk-header_in gitattributes[5]).
Limit the revisions to show. This can be either a single revision meaning show from the given revision and back, or it can be a range in the form ".." to show all revisions between and back to . Note, more advanced revision selection can be applied. For a more complete list of ways to spell object names, seegitrevisions[7].
Limit commits to the ones touching files in the given paths. Note, to avoid ambiguity with respect to revision names use "--" to separate the paths from any preceding options.
gitk-specific options
Command to be run each time gitk has to determine the revision range to show. The command is expected to print on its standard output a list of additional revisions to be shown, one per line. Use this instead of explicitly specifying a__ if the set of commits to show may vary between refreshes.
Select the specified commit after loading the graph. Default behavior is equivalent to specifying --select-commit=HEAD.