Code

Document the refresh request
[tig.git] / manual.txt
1 The tig Manual
2 ==============
3 Jonas Fonseca <fonseca@diku.dk>
5 This is the manual for tig, the ncurses-based text-mode interface for git.
6 Tig allows you to browse changes in a git repository and can additionally act
7 as a pager for output of various git commands. When used as a pager, it will
8 display input from stdin and colorize it.
10 When browsing repositories, tig uses the underlying git commands to present
11 the user with various views, such as summarized commit log and showing the
12 commit with the log message, diffstat, and the diff.
14 ifndef::backend-docbook[]
15 *Table of Contents*
17 include::manual.toc[]
18 endif::backend-docbook[]
20 [[calling-conventions]]
21 Calling Conventions
22 -------------------
24 [[pager-mode]]
25 Pager Mode
26 ~~~~~~~~~~
28 If stdin is a pipe, any log or diff options will be ignored and the pager view
29 will be opened loading data from stdin. The pager mode can be used for
30 colorizing output from various git commands.
32 Example on how to colorize the output of git-show(1):
34 -----------------------------------------------------------------------------
35 $ git show | tig
36 -----------------------------------------------------------------------------
38 [[cmd-options]]
39 Git Command Options
40 ~~~~~~~~~~~~~~~~~~~
42 All git command options specified on the command line will be passed to the
43 given command and all will be shell quoted before they are passed to the
44 shell.
46 NOTE: If you specify options for the main view, you should not use the
47 `--pretty` option as this option will be set automatically to the format
48 expected by the main view.
50 Example on how to open the log view and show both author and committer
51 information:
53 -----------------------------------------------------------------------------
54 $ tig log --pretty=fuller
55 -----------------------------------------------------------------------------
57 See the <<refspec, "Specifying revisions">> section below for an introduction
58 to revision options supported by the git commands. For details on specific git
59 command options, refer to the man page of the command in question.
61 [[env-variables]]
62 Environment Variables
63 ---------------------
65 Several options related to the interface with git can be configured via
66 environment options.
68 [[repo-refs]]
69 Repository References
70 ~~~~~~~~~~~~~~~~~~~~~
72 Commits that are referenced by tags and branch heads will be marked by the
73 reference name surrounded by '[' and ']':
75 -----------------------------------------------------------------------------
76 2006-03-26 19:42 Petr Baudis         | [cogito-0.17.1] Cogito 0.17.1
77 -----------------------------------------------------------------------------
79 If you want to filter out certain directories under `.git/refs/`, say `tmp`
80 you can do it by setting the following variable:
82 -----------------------------------------------------------------------------
83 $ TIG_LS_REMOTE="git ls-remote . | sed /\/tmp\//d" tig
84 -----------------------------------------------------------------------------
86 Or set the variable permanently in your environment.
88 TIG_LS_REMOTE::
89         Set command for retrieving all repository references. The command
90         should output data in the same format as git-ls-remote(1).
92 [[history-commands]]
93 History Commands
94 ~~~~~~~~~~~~~~~~
96 It is possible to alter which commands are used for the different views.  If
97 for example you prefer commits in the main view to be sorted by date and only
98 show 500 commits, use:
100 -----------------------------------------------------------------------------
101 $ TIG_MAIN_CMD="git log --date-order -n500 --pretty=raw %s" tig
102 -----------------------------------------------------------------------------
104 Or set the variable permanently in your environment.
106 Notice, how `%s` is used to specify the commit reference. There can be a
107 maximum of 5 `%s` ref specifications.
109 TIG_DIFF_CMD::
110         The command used for the diff view. By default, git show is used
111         as a backend.
113 TIG_LOG_CMD::
114         The command used for the log view. If you prefer to have both
115         author and committer shown in the log view be sure to pass
116         `--pretty=fuller` to git log.
118 TIG_MAIN_CMD::
119         The command used for the main view. Note, you must always specify
120         the option: `--pretty=raw` since the main view parser expects to
121         read that format.
123 [[tree-commands]]
124 Tree Commands
125 ~~~~~~~~~~~~~
127 TIG_TREE_CMD::
128         The command used for the tree view. Takes two arguments, the first
129         is the revision ID and the second is the path of the directory tree,
130         empty for the root directory. Defaults to "git ls-tree %s %s".
132 TIG_BLOB_CMD::
133         The command used for the blob view. Takes one argument which is
134         the blob ID. Defaults to "git cat-file blob %s".
136 [[viewer]]
137 The Viewer
138 ----------
140 The display consists of a status window on the last line of the screen and one
141 or more views. The default is to only show one view at the time but it is
142 possible to split both the main and log view to also show the commit diff.
144 If you are in the log view and press 'Enter' when the current line is a commit
145 line, such as:
147 -----------------------------------------------------------------------------
148 commit 4d55caff4cc89335192f3e566004b4ceef572521
149 -----------------------------------------------------------------------------
151 You will split the view so that the log view is displayed in the top window
152 and the diff view in the bottom window. You can switch between the two views
153 by pressing 'Tab'. To maximize the log view again, simply press 'l'.
155 [[commit-id]]
156 Current Head and Commit ID
157 ~~~~~~~~~~~~~~~~~~~~~~~~~~
159 The viewer keeps track of both what head and commit ID you are currently
160 viewing. The commit ID will follow the cursor line and change every time
161 you highlight a different commit. Whenever you reopen the diff view it will be
162 reloaded, if the commit ID changed.
164 The head ID is used when opening the main and log view to indicate from what
165 revision to show history.
167 [[views]]
168 Views
169 ~~~~~
171 Various 'views' of a repository is presented. Each view is based on output
172 from an external command, most often 'git log', 'git diff', or 'git show'.
174 The main view::
175         Is the default view, and it shows a one line summary of each commit
176         in the chosen list of revisions. The summary includes commit date,
177         author, and the first line of the log message. Additionally, any
178         repository references, such as tags, will be shown.
180 The log view::
181         Presents a more rich view of the revision log showing the whole log
182         message and the diffstat.
184 The diff view::
185         Shows either the diff of the current working tree, that is, what
186         has changed since the last commit, or the commit diff complete
187         with log message, diffstat and diff.
189 The tree view::
190         Lists directory trees associated with the current revision allowing
191         subdirectories to be descended or ascended and file blobs to be
192         viewed.
194 The blob view::
195         Displays the file content or "blob" of data associated with a file
196         name.
198 The status view::
199         Displays status of files in the working tree and allows changes to be
200         staged/unstaged as well as adding of untracked files.
202 The stage view::
203         Displays diff changes for staged or unstanged files being tracked or
204         file content of untracked files.
206 The pager view::
207         Is used for displaying both input from stdin and output from git
208         commands entered in the internal prompt.
210 The help view::
211         Displays key binding quick reference.
213 [[title-window]]
214 Title Windows
215 ~~~~~~~~~~~~~
217 Each view has a title window which shows the name of the view, current commit
218 ID if available, and where the view is positioned:
220 -----------------------------------------------------------------------------
221 [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
222 -----------------------------------------------------------------------------
224 By default, the title of the current view is highlighted using bold font.  For
225 long loading views (taking over 3 seconds) the time since loading started will
226 be appended:
228 -----------------------------------------------------------------------------
229 [main] 77d9e40fbcea3238015aea403e06f61542df9a31 - commit 1 of 779 (0%) 5s
230 -----------------------------------------------------------------------------
232 [[keys]]
233 Default Keybindings
234 -------------------
235 Below the default key bindings are shown.
237 [[view-switching]]
238 View Switching
239 ~~~~~~~~~~~~~~
241 `-------`--------------------------------------------------------------------
242 Key     Action
243 -----------------------------------------------------------------------------
244 m       Switch to main view.
245 d       Switch to diff view.
246 l       Switch to log view.
247 p       Switch to pager view.
248 t       Switch to (directory) tree view.
249 f       Switch to (file) blob view.
250 h       Switch to help view
251 S       Switch to status view
252 c       Switch to stage view
253 -----------------------------------------------------------------------------
255 [[view-manipulation]]
256 View Manipulation
257 ~~~~~~~~~~~~~~~~~
259 `-------`--------------------------------------------------------------------
260 Key     Action
261 -----------------------------------------------------------------------------
262 q       Close view, if multiple views are open it will jump back to the \
263         previous view in the view stack. If it is the last open view it \
264         will quit. Use 'Q' to quit all views at once.
265 Enter   This key is "context sensitive" depending on what view you are \
266         currently in. When in log view on a commit line or in the main \
267         view, split the view and show the commit diff. In the diff view \
268         pressing Enter will simply scroll the view one line down.
269 Tab     Switch to next view.
270 R       Reload and refresh the current view.
271 Up      This key is "context sensitive" and will move the cursor one \
272         line up. However, if you opened a diff view from the main view \
273         (split- or full-screen) it will change the cursor to point to \
274         the previous commit in the main view and update the diff view \
275         to display it.
276 Down    Similar to 'Up' but will move down.
277 -----------------------------------------------------------------------------
279 [[cursor-nav]]
280 Cursor Navigation
281 ~~~~~~~~~~~~~~~~~
283 `-------`--------------------------------------------------------------------
284 Key     Action
285 -----------------------------------------------------------------------------
286 j       Move cursor one line up.
287 k       Move cursor one line down.
288 PgUp,\
289 -,a     Move cursor one page up.
290 PgDown  Space   Move cursor one page down.
291 Home    Jump to first line.
292 End     Jump to last line.
293 -----------------------------------------------------------------------------
295 [[view-scrolling]]
296 Scrolling
297 ~~~~~~~~~
299 `-------`--------------------------------------------------------------------
300 Key     Action
301 -----------------------------------------------------------------------------
302 Insert  Scroll view one line up.
303 Delete  Scroll view one line down.
304 w       Scroll view one page up.
305 s       Scroll view one page down.
306 -----------------------------------------------------------------------------
308 [[searching]]
309 Searching
310 ~~~~~~~~~
312 `-------`--------------------------------------------------------------------
313 Key     Action
314 -----------------------------------------------------------------------------
315 /       Search the view. Opens a prompt for entering search regex to use.
316 ?       Search backwards in the view. Also prompts for regex.
317 n       Find next match for the current search regex.
318 N       Find previous match for the current search regex.
319 -----------------------------------------------------------------------------
321 [[misc-keys]]
322 Misc
323 ~~~~
325 `-------`--------------------------------------------------------------------
326 Key     Action
327 -----------------------------------------------------------------------------
328 Q       Quit.
329 r       Redraw screen.
330 z       Stop all background loading. This can be useful if you use \
331         tig in a repository with a long history without limiting \
332         the revision log.
333 v       Show version.
334 '.'     Toggle line numbers on/off.
335 g       Toggle revision graph visualization on/off.
336 ':'     Open prompt. This allows you to specify what git command \
337         to run. Example `:log -p`
338 u       Update status of file. In the status view, this allows you to add an \
339         untracked file or stage changes to a file for next commit (similar to \
340         running git-add <filename>). In the stage view, when pressing this on \
341         a diff chunk line stages only that chunk for next commit, when not on \
342         a diff chunk line all changes in the displayed diff is staged.
343 -----------------------------------------------------------------------------
345 [[refspec]]
346 Revision Specification
347 ----------------------
349 This section describes various ways to specify what revisions to display or
350 otherwise limit the view to. Tig does not itself parse the described
351 revision options so refer to the relevant git man pages for further
352 information. Relevant man pages besides git-log(1) are git-diff(1) and
353 git-rev-list(1).
355 You can tune the interaction with git by making use of the options explained
356 in this section. For example, by configuring the environment variables
357 described in the  <<history-commands, "History commands">> section.
359 [[path-limiting]]
360 Limit by Path Name
361 ~~~~~~~~~~~~~~~~~~
363 If you are interested only in those revisions that made changes to a specific
364 file (or even several files) list the files like this:
366 -----------------------------------------------------------------------------
367 $ tig log Makefile README
368 -----------------------------------------------------------------------------
370 To avoid ambiguity with repository references such as tag name, be sure to
371 separate file names from other git options using "\--". So if you have a file
372 named 'master' it will clash with the reference named 'master', and thus you
373 will have to use:
375 -----------------------------------------------------------------------------
376 $ tig log -- master
377 -----------------------------------------------------------------------------
379 NOTE: For the main view, avoiding ambiguity will in some cases require you to
380 specify two "\--" options. The first will make tig stop option processing
381 and the latter will be passed to git log.
383 [[date-number-limiting]]
384 Limit by Date or Number
385 ~~~~~~~~~~~~~~~~~~~~~~~
387 To speed up interaction with git, you can limit the amount of commits to show
388 both for the log and main view. Either limit by date using e.g.
389 `--since=1.month` or limit by the number of commits using `-n400`.
391 If you are only interested in changed that happened between two dates you can
392 use:
394 -----------------------------------------------------------------------------
395 $ tig -- --after="May 5th" --before="2006-05-16 15:44"
396 -----------------------------------------------------------------------------
398 NOTE: If you want to avoid having to quote dates containing spaces you can use
399 "." instead, e.g. `--after=May.5th`.
401 [[commit-range-limiting]]
402 Limiting by Commit Ranges
403 ~~~~~~~~~~~~~~~~~~~~~~~~~
405 Alternatively, commits can be limited to a specific range, such as "all
406 commits between 'tag-1.0' and 'tag-2.0'". For example:
408 -----------------------------------------------------------------------------
409 $ tig log tag-1.0..tag-2.0
410 -----------------------------------------------------------------------------
412 This way of commit limiting makes it trivial to only browse the commits which
413 haven't been pushed to a remote branch. Assuming 'origin' is your upstream
414 remote branch, using:
416 -----------------------------------------------------------------------------
417 $ tig log origin..HEAD
418 -----------------------------------------------------------------------------
420 will list what will be pushed to the remote branch. Optionally, the ending
421 'HEAD' can be left out since it is implied.
423 [[reachability-limiting]]
424 Limiting by Reachability
425 ~~~~~~~~~~~~~~~~~~~~~~~~
427 Git interprets the range specifier "tag-1.0..tag-2.0" as "all commits
428 reachable from 'tag-2.0' but not from 'tag-1.0'".  Where reachability refers
429 to what commits are ancestors (or part of the history) of the branch or tagged
430 revision in question.
432 If you prefer to specify which commit to preview in this way use the
433 following:
435 -----------------------------------------------------------------------------
436 $ tig log tag-2.0 ^tag-1.0
437 -----------------------------------------------------------------------------
439 You can think of '^' as a negation operator. Using this alternate syntax, it
440 is possible to further prune commits by specifying multiple branch cut offs.
442 [[refspec-combi]]
443 Combining Revisions Specification
444 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
446 Revisions options can to some degree be combined, which makes it possible to
447 say "show at most 20 commits from within the last month that changed files
448 under the Documentation/ directory."
450 -----------------------------------------------------------------------------
451 $ tig -- --since=1.month -n20 -- Documentation/
452 -----------------------------------------------------------------------------
454 [[refspec-all]]
455 Examining All Repository References
456 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
458 In some cases, it can be useful to query changes across all references in a
459 repository. An example is to ask "did any line of development in this
460 repository change a particular file within the last week". This can be
461 accomplished using:
463 -----------------------------------------------------------------------------
464 $ tig -- --all --since=1.week -- Makefile
465 -----------------------------------------------------------------------------
467 include::BUGS[]
469 [[copy-right]]
470 Copyright
471 ---------
473 Copyright (c) 2006-2007 Jonas Fonseca <fonseca@diku.dk>
475 This program is free software; you can redistribute it and/or modify
476 it under the terms of the GNU General Public License as published by
477 the Free Software Foundation; either version 2 of the License, or
478 (at your option) any later version.
480 [[references]]
481 References and Related Tools
482 ----------------------------
484 Manpages:
486  - gitlink:tig[1]
487  - gitlink:tigrc[5]
489 Online resources:
491 include::SITES[]
493 Git porcelains:
495  - link:http://www.kernel.org/pub/software/scm/git/docs/[git],
496  - link:http://www.kernel.org/pub/software/scm/cogito/docs/[Cogito]
498 Other git repository browsers:
500  - gitk(1)
501  - qgit(1)
502  - gitview(1)