1 ifndef::doctype-manpage[]
4 Jonas Fonseca <fonseca@diku.dk>
5 endif::doctype-manpage[]
7 This is the manual for tig, the ncurses-based text-mode interface for git.
8 Tig allows you to browse changes in a git repository and can additionally act
9 as a pager for output of various git commands. When used as a pager, it will
10 display input from stdin and colorize it.
12 When browsing repositories, tig uses the underlying git commands to present
13 the user with various views, such as summarized commit log and showing the
14 commit with the log message, diffstat, and the diff.
16 ifndef::backend-docbook[]
20 endif::backend-docbook[]
22 [[calling-conventions]]
30 If stdin is a pipe, any log or diff options will be ignored and the pager view
31 will be opened loading data from stdin. The pager mode can be used for
32 colorizing output from various git commands.
34 Example on how to colorize the output of git-show(1):
36 -----------------------------------------------------------------------------
38 -----------------------------------------------------------------------------
44 All git command options specified on the command line will be passed to the
45 given command and all will be shell quoted before they are passed to the
48 NOTE: If you specify options for the main view, you should not use the
49 `--pretty` option as this option will be set automatically to the format
50 expected by the main view.
52 Example on how to view a commit and show both author and committer
55 -----------------------------------------------------------------------------
56 $ tig show --pretty=fuller
57 -----------------------------------------------------------------------------
59 See the section on <<refspec, specifying revisions>> for an introduction to
60 revision options supported by the git commands. For details on specific git
61 command options, refer to the man page of the command in question.
67 The display consists of a status window on the last line of the screen and one
68 or more views. The default is to only show one view at the time but it is
69 possible to split both the main and log view to also show the commit diff.
71 If you are in the log view and press 'Enter' when the current line is a commit
74 -----------------------------------------------------------------------------
75 commit 4d55caff4cc89335192f3e566004b4ceef572521
76 -----------------------------------------------------------------------------
78 You will split the view so that the log view is displayed in the top window
79 and the diff view in the bottom window. You can switch between the two views
80 by pressing 'Tab'. To maximize the log view again, simply press 'l'.
86 Various 'views' of a repository is presented. Each view is based on output
87 from an external command, most often 'git log', 'git diff', or 'git show'.
90 Is the default view, and it shows a one line summary of each commit
91 in the chosen list of revisions. The summary includes commit date,
92 author, and the first line of the log message. Additionally, any
93 repository references, such as tags, will be shown.
96 Presents a more rich view of the revision log showing the whole log
97 message and the diffstat.
100 Shows either the diff of the current working tree, that is, what
101 has changed since the last commit, or the commit diff complete
102 with log message, diffstat and diff.
105 Lists directory trees associated with the current revision allowing
106 subdirectories to be descended or ascended and file blobs to be
110 Displays the file content or "blob" of data associated with a file
114 Displays the file content annotated or blamed by commits.
117 Displays the branches in the repository.
120 Displays status of files in the working tree and allows changes to be
121 staged/unstaged as well as adding of untracked files.
124 Displays diff changes for staged or unstanged files being tracked or
125 file content of untracked files.
128 Is used for displaying both input from stdin and output from git
129 commands entered in the internal prompt.
132 Displays a quick reference of key bindings.
135 Browsing State and User-defined Commands
136 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
138 The viewer keeps track of both what head and commit ID you are currently
139 viewing. The commit ID will follow the cursor line and change every time you
140 highlight a different commit. Whenever you reopen the diff view it will be
141 reloaded, if the commit ID changed. The head ID is used when opening the main
142 and log view to indicate from what revision to show history.
144 Some of the commands used or provided by tig can be configured. This goes for
145 some of the <<env-variables, environment variables>> as well as the
146 <<external-commands, external commands>>. These user-defined commands can use
147 arguments that refer to the current browsing state by using one of the
150 .Browsing state variables
151 [frame="none",grid="none",cols="25<m,75<"]
152 |=============================================================================
153 |%(head) |The currently viewed 'head' ID. Defaults to HEAD
154 |%(commit) |The currently selected commit ID.
155 |%(blob) |The currently selected blob ID.
156 |%(branch) |The currently selected branch name.
157 |%(directory) |The current directory path in the tree view;
158 empty for the root directory.
159 |%(file) |The currently selected file.
160 |%(ref) |The reference given to blame or HEAD if undefined.
161 |=============================================================================
167 Each view has a title window which shows the name of the view, current commit
168 ID if available, and where the view is positioned:
170 -----------------------------------------------------------------------------
171 [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
172 -----------------------------------------------------------------------------
174 By default, the title of the current view is highlighted using bold font. For
175 long loading views (taking over 3 seconds) the time since loading started will
178 -----------------------------------------------------------------------------
179 [main] 77d9e40fbcea3238015aea403e06f61542df9a31 - commit 1 of 779 (0%) 5s
180 -----------------------------------------------------------------------------
183 Environment Variables
184 ---------------------
186 Several options related to the interface with git can be configured via
189 [[configuration-files]]
193 Upon startup, tig first reads the system wide configuration file
194 (`{sysconfdir}/tigrc` by default) and then proceeds to read the user's
195 configuration file (`~/.tigrc` by default). The paths to either of these files
196 can be overridden through the following environment variables:
199 Path of the user configuration file.
202 Path of the system wide configuration file.
205 Repository References
206 ~~~~~~~~~~~~~~~~~~~~~
208 Commits that are referenced by tags and branch heads will be marked by the
209 reference name surrounded by '[' and ']':
211 -----------------------------------------------------------------------------
212 2006-03-26 19:42 Petr Baudis | [cogito-0.17.1] Cogito 0.17.1
213 -----------------------------------------------------------------------------
215 If you want to filter what branches gets shown, say limit to only show
216 branches named `master` or which starts with the `jf/` prefix, you can
217 do it by setting the following variable:
219 -----------------------------------------------------------------------------
220 $ TIG_LS_REMOTE="git ls-remote . master jf/*" tig
221 -----------------------------------------------------------------------------
223 Or set the variable permanently in your environment.
229 Set command for retrieving all repository references. The command
230 should output data in the same format as git-ls-remote(1). Defaults
232 -----------------------------------------------------------------------------
234 -----------------------------------------------------------------------------
242 It is possible to alter which commands are used for the different views. If
243 for example you prefer commits in the main view to be sorted by date and only
244 show 500 commits, use:
246 -----------------------------------------------------------------------------
247 $ TIG_MAIN_CMD="git log --date-order -n500 --pretty=raw %(head)" tig
248 -----------------------------------------------------------------------------
250 Or set the variable permanently in your environment.
252 Notice, how `%(head)` is used to specify the commit reference.
258 The command used for the diff view. Defaults to:
259 -----------------------------------------------------------------------------
260 git show --pretty=fuller --no-color --root
261 --patch-with-stat --find-copies-harder -C %(commit)
262 -----------------------------------------------------------------------------
266 The command used for the log view. If you prefer to have both
267 author and committer shown in the log view be sure to pass
268 `--pretty=fuller` to git log. Defaults to:
269 -----------------------------------------------------------------------------
270 git log --no-color --cc --stat -n100 %(head)
271 -----------------------------------------------------------------------------
275 The command used for the main view. Note, you must always specify
276 the option: `--pretty=raw` since the main view parser expects to
278 -----------------------------------------------------------------------------
279 git log --no-color --pretty=raw --parents --topo-order %(head)
280 -----------------------------------------------------------------------------
292 The command used for the tree view. Defaults to:
293 -----------------------------------------------------------------------------
294 git ls-tree %(commit) %(directory)
295 -----------------------------------------------------------------------------
299 The command used for the blob view. Defaults to:
300 -----------------------------------------------------------------------------
301 git cat-file blob %(blob)
302 -----------------------------------------------------------------------------
309 Below the default key bindings are shown.
315 [frame="none",grid="none",cols="2<,8<",options="header"]
316 |=============================================================================
318 |m |Switch to main view.
319 |d |Switch to diff view.
320 |l |Switch to log view.
321 |p |Switch to pager view.
322 |t |Switch to (directory) tree view.
323 |f |Switch to (file) blob view.
324 |B |Switch to blame view.
325 |H |Switch to branch view.
326 |h |Switch to help view
327 |S |Switch to status view
328 |c |Switch to stage view
329 |=============================================================================
331 [[view-manipulation]]
335 [frame="none",grid="none",cols="2<,8<",options="header"]
336 |=============================================================================
338 |q |Close view, if multiple views are open it will jump back to the
339 previous view in the view stack. If it is the last open view it
340 will quit. Use 'Q' to quit all views at once.
341 |Enter |This key is "context sensitive" depending on what view you are
342 currently in. When in log view on a commit line or in the main
343 view, split the view and show the commit diff. In the diff view
344 pressing Enter will simply scroll the view one line down.
345 |Tab |Switch to next view.
346 |R |Reload and refresh the current view.
347 |M |Maximize the current view to fill the whole display.
348 |Up |This key is "context sensitive" and will move the cursor one
349 line up. However, if you opened a diff view from the main view
350 (split- or full-screen) it will change the cursor to point to
351 the previous commit in the main view and update the diff view
353 |Down |Similar to 'Up' but will move down.
354 |, |Move to parent. In the tree view, this means switch to the parent
355 directory. In the blame view it will load blame for the parent
356 commit. For merges the parent is queried.
357 |=============================================================================
360 View Specific Actions
361 ~~~~~~~~~~~~~~~~~~~~~
363 [frame="none",grid="none",cols="2<,8<",options="header"]
364 |=============================================================================
366 |u |Update status of file. In the status view, this allows you to add an
367 untracked file or stage changes to a file for next commit (similar to
368 running git-add <filename>). In the stage view, when pressing this on
369 a diff chunk line stages only that chunk for next commit, when not on
370 a diff chunk line all changes in the displayed diff is staged.
371 |M |Resolve unmerged file by launching git-mergetool(1). Note, to work
372 correctly this might require some initial configuration of your
373 preferred merge tool. See the manpage of git-mergetool(1).
374 |! |Checkout file with unstaged changes. This will reset the file to
375 contain the content it had at last commit.
376 |@ |Move to next chunk in the stage view.
377 |=============================================================================
383 [frame="none",grid="none",cols="2<,8<",options="header"]
384 |=============================================================================
386 |k |Move cursor one line up.
387 |j |Move cursor one line down.
388 |PgUp,-,a |Move cursor one page up.
389 |PgDown, Space |Move cursor one page down.
390 |End |Jump to last line.
391 |Home |Jump to first line.
392 |=============================================================================
398 [frame="none",grid="none",cols="2<,8<",options="header"]
399 |=============================================================================
401 |Insert |Scroll view one line up.
402 |Delete |Scroll view one line down.
403 |w |Scroll view one page up.
404 |s |Scroll view one page down.
405 |Left |Scroll view one column left.
406 |Right |Scroll view one column right.
407 |=============================================================================
413 [frame="none",grid="none",cols="2<,8<",options="header"]
414 |=============================================================================
416 |/ |Search the view. Opens a prompt for entering search regexp to use.
417 |? |Search backwards in the view. Also prompts for regexp.
418 |n |Find next match for the current search regexp.
419 |N |Find previous match for the current search regexp.
420 |=============================================================================
426 [frame="none",grid="none",cols="2<,8<",options="header"]
427 |=============================================================================
431 |z |Stop all background loading. This can be useful if you use
432 tig in a repository with a long history without limiting
436 |. |Toggle line numbers on/off.
437 |D |Toggle date display on/off/short/relative/local.
438 |A |Toggle author display on/off/abbreviated.
439 |g |Toggle revision graph visualization on/off.
440 |F |Toggle reference display on/off (tag and branch names).
441 |: |Open prompt. This allows you to specify what git command
442 to run. Example `:log -p`. You can also use this to jump
443 to a specific line by typing `:<linenumber>`, e.g. `:80`.
444 |e |Open file in editor.
445 |=============================================================================
447 [[external-commands]]
451 For more custom needs, external commands provide a way to easily execute
452 a script or program. They are bound to keys and use information from the
453 current browsing state, such as the current commit ID. Tig comes with
454 the following built-in external commands:
456 [frame="none",grid="none",cols="1<,1<,8<",options="header"]
457 |=============================================================================
459 |main |C |git cherry-pick %(commit)
460 |status |C |git commit
462 |=============================================================================
465 Revision Specification
466 ----------------------
468 This section describes various ways to specify what revisions to display or
469 otherwise limit the view to. Tig does not itself parse the described
470 revision options so refer to the relevant git man pages for further
471 information. Relevant man pages besides git-log(1) are git-diff(1) and
474 You can tune the interaction with git by making use of the options explained
475 in this section. For example, by configuring the environment variables
476 described in the section on <<history-commands, history commands>>.
482 If you are interested only in those revisions that made changes to a specific
483 file (or even several files) list the files like this:
485 -----------------------------------------------------------------------------
486 $ tig Makefile README
487 -----------------------------------------------------------------------------
489 To avoid ambiguity with tig's subcommands or repository references such as tag
490 name, be sure to separate file names from other git options using "`--`". So if
491 you have a file named 'status' it will clash with the 'status' subcommand, and
492 thus you will have to use:
494 -----------------------------------------------------------------------------
496 -----------------------------------------------------------------------------
498 [[date-number-limiting]]
499 Limit by Date or Number
500 ~~~~~~~~~~~~~~~~~~~~~~~
502 To speed up interaction with git, you can limit the amount of commits to show
503 both for the log and main view. Either limit by date using e.g.
504 `--since=1.month` or limit by the number of commits using `-n400`.
506 If you are only interested in changed that happened between two dates you can
509 -----------------------------------------------------------------------------
510 $ tig --after="May 5th" --before="2006-05-16 15:44"
511 -----------------------------------------------------------------------------
513 NOTE: If you want to avoid having to quote dates containing spaces you can use
514 "." instead, e.g. `--after=May.5th`.
516 [[commit-range-limiting]]
517 Limiting by Commit Ranges
518 ~~~~~~~~~~~~~~~~~~~~~~~~~
520 Alternatively, commits can be limited to a specific range, such as "all
521 commits between 'tag-1.0' and 'tag-2.0'". For example:
523 -----------------------------------------------------------------------------
524 $ tig tag-1.0..tag-2.0
525 -----------------------------------------------------------------------------
527 This way of commit limiting makes it trivial to only browse the commits which
528 haven't been pushed to a remote branch. Assuming 'origin' is your upstream
529 remote branch, using:
531 -----------------------------------------------------------------------------
533 -----------------------------------------------------------------------------
535 will list what will be pushed to the remote branch. Optionally, the ending
536 'HEAD' can be left out since it is implied.
538 [[reachability-limiting]]
539 Limiting by Reachability
540 ~~~~~~~~~~~~~~~~~~~~~~~~
542 Git interprets the range specifier "tag-1.0..tag-2.0" as "all commits
543 reachable from 'tag-2.0' but not from 'tag-1.0'". Where reachability refers
544 to what commits are ancestors (or part of the history) of the branch or tagged
545 revision in question.
547 If you prefer to specify which commit to preview in this way use the
550 -----------------------------------------------------------------------------
551 $ tig tag-2.0 ^tag-1.0
552 -----------------------------------------------------------------------------
554 You can think of '^' as a negation operator. Using this alternate syntax, it
555 is possible to further prune commits by specifying multiple branch cut offs.
558 Combining Revisions Specification
559 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
561 Revisions options can to some degree be combined, which makes it possible to
562 say "show at most 20 commits from within the last month that changed files
563 under the Documentation/ directory."
565 -----------------------------------------------------------------------------
566 $ tig --since=1.month -n20 -- Documentation/
567 -----------------------------------------------------------------------------
570 Examining All Repository References
571 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
573 In some cases, it can be useful to query changes across all references in a
574 repository. An example is to ask "did any line of development in this
575 repository change a particular file within the last week". This can be
578 -----------------------------------------------------------------------------
579 $ tig --all --since=1.week -- Makefile
580 -----------------------------------------------------------------------------
588 Copyright (c) 2006-2010 Jonas Fonseca <fonseca@diku.dk>
590 This program is free software; you can redistribute it and/or modify
591 it under the terms of the GNU General Public License as published by
592 the Free Software Foundation; either version 2 of the License, or
593 (at your option) any later version.
596 References and Related Tools
597 ----------------------------