2005-08-23 10:49:47 +02:00
|
|
|
gitk(1)
|
|
|
|
=======
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2013-01-21 20:17:53 +01:00
|
|
|
gitk - The Git repository browser
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 04:38:26 +02:00
|
|
|
[verse]
|
2006-08-25 03:04:58 +02:00
|
|
|
'gitk' [<option>...] [<revs>] [--] [<path>...]
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
2006-08-25 03:04:58 +02:00
|
|
|
Displays changes in a repository or a selected set of commits. This includes
|
|
|
|
visualizing the commit graph, showing information related to each commit, and
|
|
|
|
the files in the trees of each revision.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2006-08-25 03:04:58 +02:00
|
|
|
Historically, gitk was the first repository browser. It's written in tcl/tk
|
|
|
|
and started off in a separate repository but was later merged into the main
|
2013-01-21 20:17:53 +01:00
|
|
|
Git repository.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
|
|
|
OPTIONS
|
|
|
|
-------
|
2008-12-19 13:14:18 +01:00
|
|
|
To control which revisions to show, the command takes options applicable to
|
2010-01-10 00:33:00 +01:00
|
|
|
the 'git rev-list' command (see linkgit:git-rev-list[1]).
|
2008-06-30 20:56:34 +02:00
|
|
|
This manual page describes only the most
|
2006-08-25 03:04:58 +02:00
|
|
|
frequently used options.
|
|
|
|
|
2008-06-08 03:36:09 +02:00
|
|
|
-n <number>::
|
|
|
|
--max-count=<number>::
|
2006-08-25 03:04:58 +02:00
|
|
|
|
|
|
|
Limits the number of commits to show.
|
|
|
|
|
|
|
|
--since=<date>::
|
|
|
|
|
|
|
|
Show commits more recent than a specific date.
|
|
|
|
|
|
|
|
--until=<date>::
|
|
|
|
|
|
|
|
Show commits older than a specific date.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2006-09-20 12:23:41 +02:00
|
|
|
--all::
|
|
|
|
|
|
|
|
Show all branches.
|
|
|
|
|
2008-04-28 22:58:35 +02:00
|
|
|
--merge::
|
|
|
|
|
|
|
|
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)
|
2009-02-06 05:40:53 +01:00
|
|
|
that modify the conflicted files and do not exist on all the heads
|
|
|
|
being merged.
|
2008-04-28 22:58:35 +02:00
|
|
|
|
2008-08-29 00:00:28 +02:00
|
|
|
--argscmd=<command>::
|
|
|
|
Command to be run each time gitk has to determine the list of
|
|
|
|
<revs> to show. The command is expected to print on its standard
|
|
|
|
output a list of additional revs to be shown, one per line.
|
|
|
|
Use this instead of explicitly specifying <revs> if the set of
|
|
|
|
commits to show may vary between refreshes.
|
|
|
|
|
2008-11-13 18:28:49 +01:00
|
|
|
--select-commit=<ref>::
|
|
|
|
|
|
|
|
Automatically select the specified commit after loading the graph.
|
|
|
|
Default behavior is equivalent to specifying '--select-commit=HEAD'.
|
|
|
|
|
2006-08-25 03:04:58 +02:00
|
|
|
<revs>::
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2006-08-25 03:04:58 +02:00
|
|
|
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 "'<from>'..'<to>'" to show all revisions between '<from>' and
|
|
|
|
back to '<to>'. Note, more advanced revision selection can be applied.
|
2007-01-18 03:08:09 +01:00
|
|
|
For a more complete list of ways to spell object names, see
|
2010-10-11 18:03:32 +02:00
|
|
|
linkgit:gitrevisions[7].
|
2006-08-25 03:04:58 +02:00
|
|
|
|
2008-07-30 11:33:43 +02:00
|
|
|
<path>...::
|
2006-08-25 03:04:58 +02:00
|
|
|
|
|
|
|
Limit commits to the ones touching files in the given paths. Note, to
|
2009-03-03 20:29:21 +01:00
|
|
|
avoid ambiguity with respect to revision names use "--" to separate the paths
|
2007-02-04 05:49:16 +01:00
|
|
|
from any preceding options.
|
2005-08-23 10:49:47 +02:00
|
|
|
|
2005-10-31 05:05:32 +01:00
|
|
|
Examples
|
|
|
|
--------
|
|
|
|
gitk v2.6.12.. include/scsi drivers/scsi::
|
|
|
|
|
2008-12-19 13:14:18 +01:00
|
|
|
Show the changes since version 'v2.6.12' that changed any
|
2005-10-31 05:05:32 +01:00
|
|
|
file in the include/scsi or drivers/scsi subdirectories
|
|
|
|
|
2006-05-05 21:05:24 +02:00
|
|
|
gitk --since="2 weeks ago" \-- gitk::
|
2005-10-31 05:05:32 +01:00
|
|
|
|
|
|
|
Show the changes during the last two weeks to the file 'gitk'.
|
|
|
|
The "--" is necessary to avoid confusion with the *branch* named
|
|
|
|
'gitk'
|
|
|
|
|
2007-10-19 19:24:43 +02:00
|
|
|
gitk --max-count=100 --all \-- Makefile::
|
2006-09-20 12:23:41 +02:00
|
|
|
|
|
|
|
Show at most 100 changes made to the file 'Makefile'. Instead of only
|
|
|
|
looking for changes in the current branch look in all branches.
|
|
|
|
|
2008-04-12 11:50:20 +02:00
|
|
|
Files
|
|
|
|
-----
|
|
|
|
Gitk creates the .gitk file in your $HOME directory to store preferences
|
|
|
|
such as display options, font, and colors.
|
|
|
|
|
2008-05-29 01:55:27 +02:00
|
|
|
SEE ALSO
|
2006-08-25 03:04:58 +02:00
|
|
|
--------
|
|
|
|
'qgit(1)'::
|
|
|
|
A repository browser written in C++ using Qt.
|
|
|
|
|
|
|
|
'gitview(1)'::
|
|
|
|
A repository browser written in Python using Gtk. It's based on
|
2013-01-21 20:17:53 +01:00
|
|
|
'bzrk(1)' and distributed in the contrib area of the Git repository.
|
2006-08-25 03:04:58 +02:00
|
|
|
|
|
|
|
'tig(1)'::
|
2013-01-21 20:17:53 +01:00
|
|
|
A minimal repository browser and Git tool output highlighter written
|
2006-08-25 03:04:58 +02:00
|
|
|
in C using Ncurses.
|
|
|
|
|
2005-08-23 10:49:47 +02:00
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 09:07:32 +02:00
|
|
|
Part of the linkgit:git[1] suite
|