Add support for keybindings
[tig] / manual.txt
CommitLineData
d839253b
JF
1The tig Manual
2==============
3Jonas Fonseca <fonseca@diku.dk>
4
5This is the manual for tig, the ncurses-based text-mode interface for git.
6Tig allows you to browse changes in a git repository and can additionally act
7as a pager for output of various git commands. When used as a pager, it will
8display input from stdin and colorize it.
9
10When browsing repositories, tig uses the underlying git commands to present
11the user with various views, such as summarized commit log and showing the
12commit with the log message, diffstat, and the diff.
13
14Calling Conventions
15-------------------
16
17Pager Mode
18~~~~~~~~~~
19
20If stdin is a pipe, any log or diff options will be ignored and the pager view
21will be opened loading data from stdin. The pager mode can be used for
22colorizing output from various git commands.
23
24Example on how to colorize the output of git-show(1):
25
26 $ git show | tig
27
28Git Command Options
29~~~~~~~~~~~~~~~~~~~
30
31All git command options specified on the command line will be passed to the
32given command and all will be shell quoted before they are passed to the
33shell.
34
35NOTE: If you specify options for the main view, you should not use the
36`--pretty` option as this option will be set automatically to the format
37expected by the main view.
38
39Example on how to open the log view and show both author and committer
40information:
41
42 $ tig log --pretty=fuller
43
44See the <<refspec, "Specifying revisions">> section below for an introduction
45to revision options supported by the git commands. For details on specific git
46command options, refer to the man page of the command in question.
47
48Environment Variables
49---------------------
50
51Several options related to the interface with git can be configured via
52environment options.
53
54Repository References
55~~~~~~~~~~~~~~~~~~~~~
56
57Commits that are referenced by tags and branch heads will be marked by the
58reference name surrounded by '[' and ']':
59
60 2006-03-26 19:42 Petr Baudis | [cogito-0.17.1] Cogito 0.17.1
61
62If you want to filter out certain directories under `.git/refs/`, say `tmp`
63you can do it by setting the following variable:
64
65 $ TIG_LS_REMOTE="git ls-remote . | sed /\/tmp\//d" tig
66
67Or set the variable permanently in your environment.
68
69TIG_LS_REMOTE::
70 Set command for retrieving all repository references. The command
71 should output data in the same format as git-ls-remote(1).
72
73[[history-commands]]
74History Commands
75~~~~~~~~~~~~~~~~
76
77It is possible to alter which commands are used for the different views. If
78for example you prefer commits in the main view to be sorted by date and only
79show 500 commits, use:
80
81 $ TIG_MAIN_CMD="git log --date-order -n500 --pretty=raw %s" tig
82
83Or set the variable permanently in your environment.
84
85Notice, how `%s` is used to specify the commit reference. There can be a
86maximum of 5 `%s` ref specifications.
87
88TIG_DIFF_CMD::
89 The command used for the diff view. By default, git show is used
90 as a backend.
91
92TIG_LOG_CMD::
93 The command used for the log view. If you prefer to have both
94 author and committer shown in the log view be sure to pass
95 `--pretty=fuller` to git log.
96
97TIG_MAIN_CMD::
98 The command used for the main view. Note, you must always specify
99 the option: `--pretty=raw` since the main view parser expects to
100 read that format.
101
102The Viewer
103----------
104
105The display consists of a status window on the last line of the screen and one
106or more views. The default is to only show one view at the time but it is
107possible to split both the main and log view to also show the commit diff.
108
109If you are in the log view and press 'Enter' when the current line is a commit
110line, such as:
111
112 commit 4d55caff4cc89335192f3e566004b4ceef572521
113
114You will split the view so that the log view is displayed in the top window
115and the diff view in the bottom window. You can switch between the two views
116by pressing 'Tab'. To maximize the log view again, simply press 'l'.
117
118Current Head and Commit ID
119~~~~~~~~~~~~~~~~~~~~~~~~~~
120
121The viewer keeps track of both what head and commit ID you are currently
122viewing. The commit ID will follow the cursor line and change everytime time
123you highlight a different commit. Whenever you reopen the diff view it will be
124reloaded, if the commit ID changed.
125
126The head ID is used when opening the main and log view to indicate from what
127revision to show history.
128
129Views
130~~~~~
131
132tig(1) presents various 'views' of a repository. Each view is based on output
133from an external command, most often 'git log', 'git diff', or 'git show'.
134
135The main view::
136 Is the default view, and it shows a one line summary of each commit
137 in the chosen list of revisions. The summary includes commit date,
138 author, and the first line of the log message. Additionally, any
139 repository references, such as tags, will be shown.
140
141The log view::
142 Presents a more rich view of the revision log showing the whole log
143 message and the diffstat.
144
145The diff view::
146 Shows either the diff of the current working tree, that is, what
147 has changed since the last commit, or the commit diff complete
148 with log message, diffstat and diff.
149
150The pager view::
151 Is used for displaying both input from stdin and output from git
152 commands entered in the internal prompt.
153
154The help view::
24b5b3e0 155 Displays key binding quick reference.
d839253b
JF
156
157Title Windows
158~~~~~~~~~~~~~
159
160Each view has a title window which shows the name of the view, current commit
161ID if available, and where the view is positioned:
162
163 [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
164
165By default, the title of the current view is highlighted using bold font. For
166long loading views (taking over 3 seconds) the time since loading started will
167be appended:
168
169 [main] 77d9e40fbcea3238015aea403e06f61542df9a31 - commit 1 of 779 (0%) 5s
170
171Keys
172----
173Below the default key bindings are shown.
174
175View Switching
176~~~~~~~~~~~~~~
177m::
178 Switch to main view.
179d::
180 Switch to diff view.
181l::
182 Switch to log view.
183p::
184 Switch to pager view.
24b5b3e0 185h, ?::
d839253b
JF
186 Show man page.
187
188View Manipulation
189~~~~~~~~~~~~~~~~~
190q::
191 Close view, if multiple views are open it will jump back to the
192 previous view in the view stack. If it is the last open view it
193 will quit. Use 'Q' to quit all views at once.
194Enter::
195 This key is "context sensitive" depending on what view you are
196 currently in. When in log view on a commit line or in the main
197 view, split the view and show the commit diff. In the diff view
198 pressing Enter will simply scroll the view one line down.
199Tab::
200 Switch to next view.
201Up::
202 This key is "context sensitive" and will move the cursor one
203 line up. However, uf you opened a diff view from the main view
204 (split- or full-screen) it will change the cursor to point to
205 the previous commit in the main view and update the diff view
206 to display it.
207Down::
208 Similar to 'Up' but will move down.
209
210Cursor Navigation
211~~~~~~~~~~~~~~~~~
212j::
213 Move cursor one line up.
214k::
215 Move cursor one line down.
216PgUp::
217b::
218-::
219 Move cursor one page up.
220PgDown::
221Space::
222 Move cursor one page down.
223Home::
224 Jump to first line.
225End::
226 Jump to last line.
227
228Scrolling
229~~~~~~~~~
230Insert::
231 Scroll view one line up.
232Delete::
233 Scroll view one line down.
234w::
235 Scroll view one page up.
236s::
237 Scroll view one page down.
238
239Misc
240~~~~
241Q::
242 Quit.
243r::
244 Redraw screen.
245z::
246 Stop all background loading. This can be useful if you use
247 tig(1) in a repository with a long history without limiting
248 the revision log.
249v::
250 Show version.
251n::
252 Toggle line numbers on/off.
54efb62b
JF
253g::
254 Toggle revision graph visualization on/off.
d839253b
JF
255':'::
256 Open prompt. This allows you to specify what git command
257 to run. Example:
258
259 :log -p
260
261[[refspec]]
262Revision Specification
263----------------------
264
265This section describes various ways to specify what revisions to display or
266otherwise limit the view to. tig(1) does not itself parse the described
267revision options so refer to the relevant git man pages for futher
268information. Relevant man pages besides git-log(1) are git-diff(1) and
269git-rev-list(1).
270
271You can tune the interaction with git by making use of the options explained
272in this section. For example, by configuring the environment variables
273described in the <<history-commands, "History commands">> section.
274
275Limit by Path Name
276~~~~~~~~~~~~~~~~~~
277
278If you are interested only in those revisions that made changes to a specific
279file (or even several files) list the files like this:
280
281 $ tig log Makefile README
282
283To avoid ambiguity with repository references such as tag name, be sure to
284separate file names from other git options using "\--". So if you have a file
285named 'master' it will clash with the reference named 'master', and thus you
286will have to use:
287
288 $ tig log -- master
289
290NOTE: For the main view, avoiding ambiguity will in some cases require you to
291specify two "\--" options. The first will make tig(1) stop option processing
292and the latter will be passed to git log.
293
294Limit by Date or Number
295~~~~~~~~~~~~~~~~~~~~~~~
296
297To speed up interaction with git, you can limit the amount of commits to show
298both for the log and main view. Either limit by date using e.g.
299`--since=1.month` or limit by the number of commits using `-n400`.
300
301If you are only interested in changed that happened between two dates you can
302use:
303
304 $ tig -- --after="May 5th" --before="2006-05-16 15:44"
305
306NOTE: If you want to avoid having to quote dates containing spaces you can use
307"." instead, e.g. `--after=May.5th`.
308
309Limiting by Commit Ranges
310~~~~~~~~~~~~~~~~~~~~~~~~~
311
312Alternatively, commits can be limited to a specific range, such as "all
313commits between 'tag-1.0' and 'tag-2.0'". For example:
314
315 $ tig log tag-1.0..tag-2.0
316
317This way of commit limiting makes it trivial to only browse the commits which
318haven't been pushed to a remote branch. Assuming 'origin' is your upstream
319remote branch, using:
320
321 $ tig log origin..HEAD
322
323will list what will be pushed to the remote branch. Optionally, the ending
324'HEAD' can be left out since it is implied.
325
326Limiting by Reachability
327~~~~~~~~~~~~~~~~~~~~~~~~
328
329Git interprets the range specifier "tag-1.0..tag-2.0" as "all commits
330reachable from 'tag-2.0' but not from 'tag-1.0'". Where reachability refers
331to what commits are ancestors (or part of the history) of the branch or tagged
332revision in question.
333
334If you prefer to specify which commit to preview in this way use the
335following:
336
337 $ tig log tag-2.0 ^tag-1.0
338
339You can think of '^' as a negation operator. Using this alternate syntax, it
340is possible to further prune commits by specifying multiple branch cut offs.
341
342Combining Revisions Specification
343~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
344
345Revisions options can to some degree be combined, which makes it possible to
346say "show at most 20 commits from within the last month that changed files
347under the Documentation/ directory."
348
349 $ tig -- --since=1.month -n20 -- Documentation/
350
351Examining All Repository References
352~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
353
354In some cases, it can be useful to query changes across all references in a
355repository. An example is to ask "did any line of development in this
356repository change a particular file within the last week". This can be
357accomplished using:
358
359 $ tig -- --all --since=1.week -- Makefile
360
361include::BUGS[]
362
363Copyright
364---------
365
366Copyright (c) 2006 Jonas Fonseca <fonseca@diku.dk>
367
368This program is free software; you can redistribute it and/or modify
369it under the terms of the GNU General Public License as published by
370the Free Software Foundation; either version 2 of the License, or
371(at your option) any later version.
372
373References and Related Tools
374----------------------------
375
376include::SITES[]
377
378Git porcelains:
379
380 - link:http://www.kernel.org/pub/software/scm/git/docs/[git],
381 - link:http://www.kernel.org/pub/software/scm/cogito/docs/[Cogito]
382
383Other git repository browsers:
384
385 - gitk(1)
386 - qgit(1)
387 - gitview(1)