1 ifndef::doctype-manpage[]
4 Jonas Fonseca <jonas.fonseca@gmail.com>
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 ifdef::include-manual-toc[]
20 endif::include-manual-toc[]
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 a 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 are 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 author 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, remotes and tags 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 unstaged files being tracked or
125 file content of untracked files.
128 Displays the list of stashes in the repository.
131 Displays a list of files and all the lines that matches a search
135 Is used for displaying both input from stdin and output from Git
136 commands entered in the internal prompt.
139 Displays a quick reference of key bindings.
142 Browsing State and User-defined Commands
143 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
145 The viewer keeps track of both what head and commit ID you are currently
146 viewing. The commit ID will follow the cursor line and change every time you
147 highlight a different commit. Whenever you reopen the diff view it will be
148 reloaded, if the commit ID changed. The head ID is used when opening the main
149 and log view to indicate from what revision to show history.
151 Some of the commands used or provided by Tig can be configured. This goes for
152 some of the <<env-variables, environment variables>> as well as the
153 <<external-commands, external commands>>. These user-defined commands can use
154 arguments that refer to the current browsing state by using one of the
157 .Browsing state variables
158 [frame="none",grid="none",cols="25<m,75<"]
159 |=============================================================================
160 |%(head) |The currently viewed 'head' ID. Defaults to HEAD
161 |%(commit) |The currently selected commit ID.
162 |%(blob) |The currently selected blob ID.
163 |%(branch) |The currently selected branch name.
164 |%(stash) |The currently selected stash name.
165 |%(directory) |The current directory path in the tree view;
166 empty for the root directory.
167 |%(file) |The currently selected file.
168 |%(ref) |The reference given to blame or HEAD if undefined.
169 |%(revargs) |The revision arguments passed on the command line.
170 |%(fileargs) |The file arguments passed on the command line.
171 |%(cmdlineargs) |All other options passed on the command line.
172 |%(diffargs) |The diff options from 'diff-options' or 'TIG_DIFF_OPTS'
173 |%(prompt) |Prompt for the argument value.
174 |=============================================================================
176 Example user-defined commands:
178 - Allow to amend the last commit:
180 bind generic + !git commit --amend
182 - Copy commit ID to clipboard:
184 bind generic 9 !@sh -c "echo -n %(commit) | xclip -selection c"
186 - Add/edit notes for the current commit used during a review:
188 bind generic T !git notes edit %(commit)
190 - Enter Git's interactive add for fine-grained staging of file content:
192 bind generic I !git add -i %(file)
194 - Rebase current branch on top of the selected branch:
196 bind refs 3 !git rebase -i %(branch)
202 Each view has a title window which shows the name of the view, current commit
203 ID if available, and where the view is positioned:
205 -----------------------------------------------------------------------------
206 [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
207 -----------------------------------------------------------------------------
209 By default, the title of the current view is highlighted using bold font. For
210 long loading views (taking over 3 seconds) the time since loading started will
213 -----------------------------------------------------------------------------
214 [main] 77d9e40fbcea3238015aea403e06f61542df9a31 - commit 1 of 779 (0%) 5s
215 -----------------------------------------------------------------------------
218 Environment Variables
219 ---------------------
221 Several options related to the interface with Git can be configured via
224 [[configuration-files]]
228 Upon startup, Tig first reads the system wide configuration file
229 (`{sysconfdir}/tigrc` by default) and then proceeds to read the user's
230 configuration file (`~/.tigrc` by default). The paths to either of these files
231 can be overridden through the following environment variables:
234 Path of the user configuration file.
237 Path of the system wide configuration file.
240 Repository References
241 ~~~~~~~~~~~~~~~~~~~~~
243 Commits that are referenced by tags and branch heads will be marked by the
244 reference name surrounded by '[' and ']':
246 -----------------------------------------------------------------------------
247 2006-03-26 19:42 Petr Baudis | [cogito-0.17.1] Cogito 0.17.1
248 -----------------------------------------------------------------------------
250 If you want to limit what branches are shown, say only show branches named
251 `master` or those which start with the `feature/` prefix, you can do it by setting
252 the following variable:
254 -----------------------------------------------------------------------------
255 $ TIG_LS_REMOTE="git ls-remote . master feature/*" tig
256 -----------------------------------------------------------------------------
258 Or set the variable permanently in your environment.
264 Set command for retrieving all repository references. The command
265 should output data in the same format as git-ls-remote(1). Defaults
267 -----------------------------------------------------------------------------
269 -----------------------------------------------------------------------------
277 It is possible to alter how diffs are shown by the diff view. If for example
278 you prefer to have commit and author dates shown as relative dates, use:
280 -----------------------------------------------------------------------------
281 $ TIG_DIFF_OPTS="--relative-date" tig
282 -----------------------------------------------------------------------------
284 Or set the variable permanently in your environment.
289 Below the default key bindings are shown.
295 [frame="none",grid="none",cols="2<,8<",options="header"]
296 |=============================================================================
298 |m |Switch to main view.
299 |d |Switch to diff view.
300 |l |Switch to log view.
301 |p |Switch to pager view.
302 |t |Switch to (directory) tree view.
303 |f |Switch to (file) blob view.
304 |g |Switch to grep view.
305 |b |Switch to blame view.
306 |r |Switch to refs view.
307 |y |Switch to stash view.
308 |h |Switch to help view
309 |s |Switch to status view
310 |c |Switch to stage view
311 |=============================================================================
313 [[view-manipulation]]
317 [frame="none",grid="none",cols="2<,8<",options="header"]
318 |=============================================================================
320 |q |Close view, if multiple views are open it will jump back to the
321 previous view in the view stack. If it is the last open view it
322 will quit. Use 'Q' to quit all views at once.
323 |Enter |This key is "context sensitive" depending on what view you are
324 currently in. When in log view on a commit line or in the main
325 view, split the view and show the commit diff. In the diff view
326 pressing Enter will simply scroll the view one line down.
327 |Tab |Switch to next view.
328 |R |Reload and refresh the current view.
329 |O |Maximize the current view to fill the whole display.
330 |Up |This key is "context sensitive" and will move the cursor one
331 line up. However, if you opened a diff view from the main view
332 (split- or full-screen) it will change the cursor to point to
333 the previous commit in the main view and update the diff view
335 |Down |Similar to 'Up' but will move down.
336 |, |Move to parent. In the tree view, this means switch to the parent
337 directory. In the blame view it will load blame for the parent
338 commit. For merges the parent is queried.
339 |=============================================================================
342 View Specific Actions
343 ~~~~~~~~~~~~~~~~~~~~~
345 [frame="none",grid="none",cols="2<,8<",options="header"]
346 |=============================================================================
348 |u |Update status of file. In the status view, this allows you to add an
349 untracked file or stage changes to a file for next commit (similar to
350 running git-add <filename>). In the stage view, when pressing this on
351 a diff chunk line stages only that chunk for next commit, when not on
352 a diff chunk line all changes in the displayed diff are staged.
353 |M |Resolve unmerged file by launching git-mergetool(1). Note, to work
354 correctly this might require some initial configuration of your
355 preferred merge tool. See the manpage of git-mergetool(1).
356 |! |Checkout file with unstaged changes. This will reset the file to
357 contain the content it had at last commit.
358 |1 |Stage single diff line.
359 |@ |Move to next chunk in the stage view.
360 |] |Increase the diff context.
361 |[ |Decrease the diff context.
362 |=============================================================================
368 [frame="none",grid="none",cols="2<,8<",options="header"]
369 |=============================================================================
371 |k |Move cursor one line up.
372 |j |Move cursor one line down.
373 |PgUp,-,a |Move cursor one page up.
374 |PgDown, Space |Move cursor one page down.
375 |End |Jump to last line.
376 |Home |Jump to first line.
377 |=============================================================================
383 [frame="none",grid="none",cols="2<,8<",options="header"]
384 |=============================================================================
386 |Insert |Scroll view one line up.
387 |Delete |Scroll view one line down.
388 |ScrBack|Scroll view one page up.
389 |ScrFwd |Scroll view one page down.
390 |Left |Scroll view one column left.
391 |Right |Scroll view one column right.
392 |\| |Scroll view to the first column.
393 |=============================================================================
399 [frame="none",grid="none",cols="2<,8<",options="header"]
400 |=============================================================================
402 |/ |Search the view. Opens a prompt for entering search regexp to use.
403 |? |Search backwards in the view. Also prompts for regexp.
404 |n |Find next match for the current search regexp.
405 |N |Find previous match for the current search regexp.
406 |=============================================================================
412 [frame="none",grid="none",cols="2<,8<",options="header"]
413 |=============================================================================
416 |<C-L> |Redraw screen.
417 |z |Stop all background loading. This can be useful if you use
418 Tig in a repository with a long history without limiting
422 |# |Toggle line numbers on/off.
423 |D |Toggle date display on/off/short/relative/local.
424 |A |Toggle author display on/off/abbreviated/email/email user name.
425 |G |Toggle revision graph visualization on/off.
426 |~ |Toggle (line) graphics mode
427 |F |Toggle reference display on/off (tag and branch names).
428 |W |Toggle ignoring whitespace on/off for diffs
429 |X |Toggle commit ID display on/off
430 |% |Toggle file filtering in order to see the full diff instead of only
431 the diff concerning the currently selected file.
432 |$ |Toggle highlighting of commit title overflow.
433 |: |Open prompt. This allows you to specify what command to run.
434 |e |Open file in editor.
435 |=============================================================================
441 [frame="none",grid="none",cols="2<,8<",options="header"]
442 |=============================================================================
444 |:<number> |Jump to the specific line number, e.g. `:80`.
445 |:<sha> |Jump to a specific commit, e.g. `:2f12bcc`.
446 |:<x> |Execute the corresponding key binding, e.g. `:q`.
447 |:!<command> |Execute a system command in a pager, e.g. `:!git log -p`.
448 |:<action> |Execute a Tig command, e.g. `:edit`.
449 |:save-display <file> |Save current display to `<file>`.
450 |:script <file> |Execute commands from `<file>`.
451 |:exec <flags><args...> |Execute command using `<args>` with external
452 user-defined command option flags defined in `<flags>`.
453 |=============================================================================
455 [[external-commands]]
459 For more custom needs, external commands provide a way to easily execute
460 a script or program. They are bound to keys and use information from the
461 current browsing state, such as the current commit ID. Tig comes with
462 the following built-in external commands:
464 [frame="none",grid="none",cols="1<,1<,8<",options="header"]
465 |=============================================================================
467 |main |C |git cherry-pick %(commit)
468 |status |C |git commit
470 |=============================================================================
473 Revision Specification
474 ----------------------
476 This section describes various ways to specify what revisions to display or
477 otherwise limit the view to. Tig does not itself parse the described
478 revision options so refer to the relevant Git man pages for further
479 information. Relevant man pages besides git-log(1) are git-diff(1) and
482 You can tune the interaction with Git by making use of the options explained
483 in this section. For example, by configuring the environment variable
484 described in the section on <<diff-options, diff options>>.
490 If you are interested only in those revisions that made changes to a specific
491 file (or even several files) list the files like this:
493 -----------------------------------------------------------------------------
494 $ tig Makefile README
495 -----------------------------------------------------------------------------
497 To avoid ambiguity with Tig's subcommands or repository references such as tag
498 names, be sure to separate file names from other Git options using "`--`". So
499 if you have a file named 'status' it will clash with the 'status' subcommand,
500 and thus you will have to use:
502 -----------------------------------------------------------------------------
504 -----------------------------------------------------------------------------
506 [[date-number-limiting]]
507 Limit by Date or Number
508 ~~~~~~~~~~~~~~~~~~~~~~~
510 To speed up interaction with Git, you can limit the amount of commits to show
511 both for the log and main view. Either limit by date using e.g.
512 `--since=1.month` or limit by the number of commits using `-n400`.
514 If you are only interested in changes that happened between two dates you can
517 -----------------------------------------------------------------------------
518 $ tig --after="May 5th" --before="2006-05-16 15:44"
519 -----------------------------------------------------------------------------
521 NOTE: If you want to avoid having to quote dates containing spaces you can use
522 "." instead, e.g. `--after=May.5th`.
524 [[commit-range-limiting]]
525 Limiting by Commit Ranges
526 ~~~~~~~~~~~~~~~~~~~~~~~~~
528 Alternatively, commits can be limited to a specific range, such as "all
529 commits between 'tag-1.0' and 'tag-2.0'". For example:
531 -----------------------------------------------------------------------------
532 $ tig tag-1.0..tag-2.0
533 -----------------------------------------------------------------------------
535 This way of commit limiting makes it trivial to only browse the commits which
536 haven't been pushed to a remote branch. Assuming 'origin' is your upstream
537 remote branch, using:
539 -----------------------------------------------------------------------------
541 -----------------------------------------------------------------------------
543 will list what will be pushed to the remote branch. Optionally, the ending
544 'HEAD' can be left out since it is implied.
546 [[reachability-limiting]]
547 Limiting by Reachability
548 ~~~~~~~~~~~~~~~~~~~~~~~~
550 Git interprets the range specifier "tag-1.0..tag-2.0" as "all commits
551 reachable from 'tag-2.0' but not from 'tag-1.0'". Where reachability refers
552 to what commits are ancestors (or part of the history) of the branch or tagged
553 revision in question.
555 If you prefer to specify which commit to preview in this way use the
558 -----------------------------------------------------------------------------
559 $ tig tag-2.0 ^tag-1.0
560 -----------------------------------------------------------------------------
562 You can think of '^' as a negation operator. Using this alternate syntax, it
563 is possible to further prune commits by specifying multiple branch cut offs.
566 Combining Revisions Specification
567 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
569 Revision options can to some degree be combined, which makes it possible to
570 say "show at most 20 commits from within the last month that changed files
571 under the Documentation/ directory."
573 -----------------------------------------------------------------------------
574 $ tig --since=1.month -n20 -- Documentation/
575 -----------------------------------------------------------------------------
578 Examining All Repository References
579 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
581 In some cases, it can be useful to query changes across all references in a
582 repository. An example is to ask "did any line of development in this
583 repository change a particular file within the last week". This can be
586 -----------------------------------------------------------------------------
587 $ tig --all --since=1.week -- Makefile
588 -----------------------------------------------------------------------------
593 Please visit Tig's http://jonas.nitro.dk/tig[home page] or
594 https://github.com/jonas/tig[main Git repository] for information about
595 new releases and how to report bugs and feature requests.
601 Copyright (c) 2006-2014 Jonas Fonseca <jonas.fonseca@gmail.com>
603 This program is free software; you can redistribute it and/or modify
604 it under the terms of the GNU General Public License as published by
605 the Free Software Foundation; either version 2 of the License, or
606 (at your option) any later version.
619 - link:tig.1.adoc[tig(1)]
620 - link:tigrc.5.adoc[tigrc(5)]