Merge git://github.com/git-l10n/git-po
[git.git] / Documentation / gitk.txt
blobc17e760184fad6425276acfac7ade83ab13328cf
1 gitk(1)
2 =======
4 NAME
5 ----
6 gitk - The Git repository browser
8 SYNOPSIS
9 --------
10 [verse]
11 'gitk' [<option>...] [<revs>] [--] [<path>...]
13 DESCRIPTION
14 -----------
15 Displays changes in a repository or a selected set of commits. This includes
16 visualizing the commit graph, showing information related to each commit, and
17 the files in the trees of each revision.
19 Historically, gitk was the first repository browser. It's written in tcl/tk
20 and started off in a separate repository but was later merged into the main
21 Git repository.
23 OPTIONS
24 -------
25 To control which revisions to show, the command takes options applicable to
26 the 'git rev-list' command (see linkgit:git-rev-list[1]).
27 This manual page describes only the most
28 frequently used options.
30 -n <number>::
31 --max-count=<number>::
33         Limits the number of commits to show.
35 --since=<date>::
37         Show commits more recent than a specific date.
39 --until=<date>::
41         Show commits older than a specific date.
43 --all::
45         Show all branches.
47 --merge::
49         After an attempt to merge stops with conflicts, show the commits on
50         the history between two branches (i.e. the HEAD and the MERGE_HEAD)
51         that modify the conflicted files and do not exist on all the heads
52         being merged.
54 --argscmd=<command>::
55         Command to be run each time gitk has to determine the list of
56         <revs> to show.  The command is expected to print on its standard
57         output a list of additional revs to be shown, one per line.
58         Use this instead of explicitly specifying <revs> if the set of
59         commits to show may vary between refreshes.
61 --select-commit=<ref>::
63         Automatically select the specified commit after loading the graph.
64         Default behavior is equivalent to specifying '--select-commit=HEAD'.
66 <revs>::
68         Limit the revisions to show. This can be either a single revision
69         meaning show from the given revision and back, or it can be a range in
70         the form "'<from>'..'<to>'" to show all revisions between '<from>' and
71         back to '<to>'. Note, more advanced revision selection can be applied.
72         For a more complete list of ways to spell object names, see
73         linkgit:gitrevisions[7].
75 <path>...::
77         Limit commits to the ones touching files in the given paths. Note, to
78         avoid ambiguity with respect to revision names use "--" to separate the paths
79         from any preceding options.
81 Examples
82 --------
83 gitk v2.6.12.. include/scsi drivers/scsi::
85         Show the changes since version 'v2.6.12' that changed any
86         file in the include/scsi or drivers/scsi subdirectories
88 gitk --since="2 weeks ago" \-- gitk::
90         Show the changes during the last two weeks to the file 'gitk'.
91         The "--" is necessary to avoid confusion with the *branch* named
92         'gitk'
94 gitk --max-count=100 --all \-- Makefile::
96         Show at most 100 changes made to the file 'Makefile'. Instead of only
97         looking for changes in the current branch look in all branches.
99 Files
100 -----
101 Gitk creates the .gitk file in your $HOME directory to store preferences
102 such as display options, font, and colors.
104 SEE ALSO
105 --------
106 'qgit(1)'::
107         A repository browser written in C++ using Qt.
109 'gitview(1)'::
110         A repository browser written in Python using Gtk. It's based on
111         'bzrk(1)' and distributed in the contrib area of the Git repository.
113 'tig(1)'::
114         A minimal repository browser and Git tool output highlighter written
115         in C using Ncurses.
119 Part of the linkgit:git[1] suite