Merge pull request #457 from vivien/text-variable
[tig.git] / doc / manual.adoc
blob84e76d07d930b3f82d062af7e7b48b7f702446bc
1 ifndef::doctype-manpage[]
2 The Tig Manual
3 ==============
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[]
17 *Table of Contents*
19 include::manual.toc[]
20 endif::include-manual-toc[]
22 [[calling-conventions]]
23 Calling Conventions
24 -------------------
26 [[pager-mode]]
27 Pager Mode
28 ~~~~~~~~~~
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 -----------------------------------------------------------------------------
37 $ git show | tig
38 -----------------------------------------------------------------------------
40 [[cmd-options]]
41 Git Command Options
42 ~~~~~~~~~~~~~~~~~~~
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
46 shell.
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
53 information:
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.
63 [[viewer]]
64 The Viewer
65 ----------
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
72 line, such as:
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'.
82 [[views]]
83 Views
84 ~~~~~
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'.
89 The main view::
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.
95 The log view::
96         Presents a more rich view of the revision log showing the whole log
97         message and the diffstat.
99 The diff view::
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.
104 The tree view::
105         Lists directory trees associated with the current revision allowing
106         subdirectories to be descended or ascended and file blobs to be
107         viewed.
109 The blob view::
110         Displays the file content or "blob" of data associated with a file
111         name.
113 The blame view::
114         Displays the file content annotated or blamed by commits.
116 The refs view::
117         Displays the branches, remotes and tags in the repository.
119 The status view::
120         Displays status of files in the working tree and allows changes to be
121         staged/unstaged as well as adding of untracked files.
123 The stage view::
124         Displays diff changes for staged or unstaged files being tracked or
125         file content of untracked files.
127 The stash view::
128         Displays the list of stashes in the repository.
130 The grep view::
131         Displays a list of files and all the lines that matches a search
132         pattern.
134 The pager view::
135         Is used for displaying both input from stdin and output from Git
136         commands entered in the internal prompt.
138 The help view::
139         Displays a quick reference of key bindings.
141 [[commit-id]]
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
155 following variables.
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 |%(remote)              |The currently selected remote name. For remote
165                          branches %(branch) will contain the branch name.
166 |%(tag)                 |The currently selected tag name.
167 |%(stash)               |The currently selected stash name.
168 |%(directory)           |The current directory path in the tree view or
169                          "." if undefined.
170 |%(file)                |The currently selected file.
171 |%(lineno)              |The currently selected line number. Defaults to 0.
172 |%(ref)                 |The reference given to blame or HEAD if undefined.
173 |%(revargs)             |The revision arguments passed on the command line.
174 |%(fileargs)            |The file arguments passed on the command line.
175 |%(cmdlineargs)         |All other options passed on the command line.
176 |%(diffargs)            |Options from 'diff-options' or 'TIG_DIFF_OPTS' used
177                          used by the diff view.
178 |%(blameargs)           |Options from 'blame-options' used by the blame view.
179 |%(logargs)             |Options from 'log-options' used by the log view.
180 |%(mainargs)            |Options from 'main-options' used by the main view.
181 |%(prompt)              |Prompt for the argument value. Optionally specify a
182                          custom prompt using `"%(prompt Enter branch name: )"`
183 |%(text)                |The text of the currently selected line.
184 |%(repo:head)           |The name of the checked out branch, e.g. `master`
185 |%(repo:head-id)        |The commit ID of the checked out branch.
186 |%(repo:remote)         |The remote associated with the checked out branch,
187                          e.g. `origin/master`.
188 |%(repo:cdup)           |The path to change directory to the repository root,
189                          e.g. `../`
190 |%(repo:prefix)         |The path prefix of the current work directory,
191                          e.g `subdir/`.
192 |%(repo:git-dir)        |The path to the Git directory, e.g. `/src/repo/.git`.
193 |%(repo:is-inside-work-tree)
194                         |Whether Tig is running inside a work tree,
195                          either `true` or `false`.
196 |=============================================================================
198 Example user-defined commands:
200  - Allow to amend the last commit:
202         bind generic + !git commit --amend
204  - Copy commit ID to clipboard:
206         bind generic 9 !@sh -c "echo -n %(commit) | xclip -selection c"
208  - Add/edit notes for the current commit used during a review:
210         bind generic T !git notes edit %(commit)
212  - Enter Git's interactive add for fine-grained staging of file content:
214         bind generic I !git add -i %(file)
216  - Rebase current branch on top of the selected branch:
218         bind refs 3 !git rebase -i %(branch)
220 [[title-window]]
221 Title Windows
222 ~~~~~~~~~~~~~
224 Each view has a title window which shows the name of the view, current commit
225 ID if available, and where the view is positioned:
227 -----------------------------------------------------------------------------
228 [main] c622eefaa485995320bc743431bae0d497b1d875 - commit 1 of 61 (1%)
229 -----------------------------------------------------------------------------
231 By default, the title of the current view is highlighted using bold font.  For
232 long loading views (taking over 3 seconds) the time since loading started will
233 be appended:
235 -----------------------------------------------------------------------------
236 [main] 77d9e40fbcea3238015aea403e06f61542df9a31 - commit 1 of 779 (0%) 5s
237 -----------------------------------------------------------------------------
239 [[env-variables]]
240 Environment Variables
241 ---------------------
243 Several options related to the interface with Git can be configured via
244 environment options.
246 [[configuration-files]]
247 Configuration Files
248 ~~~~~~~~~~~~~~~~~~~
250 Upon startup, Tig first reads the system wide configuration file
251 (`{sysconfdir}/tigrc` by default) and then proceeds to read the user's
252 configuration file (`~/.tigrc` by default). The paths to either of these files
253 can be overridden through the following environment variables:
255 TIGRC_USER::
256         Path of the user configuration file.
258 TIGRC_SYSTEM::
259         Path of the system wide configuration file.
261 [[repo-refs]]
262 Repository References
263 ~~~~~~~~~~~~~~~~~~~~~
265 Commits that are referenced by tags and branch heads will be marked by the
266 reference name surrounded by '[' and ']':
268 -----------------------------------------------------------------------------
269 2006-03-26 19:42 Petr Baudis         | [cogito-0.17.1] Cogito 0.17.1
270 -----------------------------------------------------------------------------
272 If you want to limit what branches are shown, say only show branches named
273 `master` or those which start with the `feature/` prefix, you can do it by setting
274 the following variable:
276 -----------------------------------------------------------------------------
277 $ TIG_LS_REMOTE="git ls-remote . master feature/*" tig
278 -----------------------------------------------------------------------------
280 Or set the variable permanently in your environment.
284 TIG_LS_REMOTE::
286         Set command for retrieving all repository references. The command
287         should output data in the same format as git-ls-remote(1). Defaults
288         to:
289 -----------------------------------------------------------------------------
290 git ls-remote .
291 -----------------------------------------------------------------------------
295 [[diff-options]]
296 Diff options
297 ~~~~~~~~~~~~
299 It is possible to alter how diffs are shown by the diff view. If for example
300 you prefer to have commit and author dates shown as relative dates, use:
302 -----------------------------------------------------------------------------
303 $ TIG_DIFF_OPTS="--relative-date" tig
304 -----------------------------------------------------------------------------
306 Or set the variable permanently in your environment.
308 [[keys]]
309 Default Keybindings
310 -------------------
311 Below the default key bindings are shown.
313 [[view-switching]]
314 View Switching
315 ~~~~~~~~~~~~~~
317 [frame="none",grid="none",cols="2<,8<",options="header"]
318 |=============================================================================
319 |Key    |Action
320 |m      |Switch to main view.
321 |d      |Switch to diff view.
322 |l      |Switch to log view.
323 |p      |Switch to pager view.
324 |t      |Switch to (directory) tree view.
325 |f      |Switch to (file) blob view.
326 |g      |Switch to grep view.
327 |b      |Switch to blame view.
328 |r      |Switch to refs view.
329 |y      |Switch to stash view.
330 |h      |Switch to help view
331 |s      |Switch to status view
332 |c      |Switch to stage view
333 |=============================================================================
335 [[view-manipulation]]
336 View Manipulation
337 ~~~~~~~~~~~~~~~~~
339 [frame="none",grid="none",cols="2<,8<",options="header"]
340 |=============================================================================
341 |Key    |Action
342 |q      |Close view, if multiple views are open it will jump back to the
343         previous view in the view stack. If it is the last open view it
344         will quit. Use 'Q' to quit all views at once.
345 |Enter  |This key is "context sensitive" depending on what view you are
346         currently in. When in log view on a commit line or in the main
347         view, split the view and show the commit diff. In the diff view
348         pressing Enter will simply scroll the view one line down.
349 |Tab    |Switch to next view.
350 |R      |Reload and refresh the current view.
351 |O      |Maximize the current view to fill the whole display.
352 |Up     |This key is "context sensitive" and will move the cursor one
353         line up. However, if you opened a diff view from the main view
354         (split- or full-screen) it will change the cursor to point to
355         the previous commit in the main view and update the diff view
356         to display it.
357 |Down   |Similar to 'Up' but will move down.
358 |,      |Move to parent. In the tree view, this means switch to the parent
359         directory. In the blame view it will load blame for the parent
360         commit. For merges the parent is queried.
361 |=============================================================================
363 [[view-actions]]
364 View Specific Actions
365 ~~~~~~~~~~~~~~~~~~~~~
367 [frame="none",grid="none",cols="2<,8<",options="header"]
368 |=============================================================================
369 |Key    |Action
370 |u      |Update status of file. In the status view, this allows you to add an
371          untracked file or stage changes to a file for next commit (similar to
372          running git-add <filename>). In the stage view, when pressing this on
373          a diff chunk line stages only that chunk for next commit, when not on
374          a diff chunk line all changes in the displayed diff are staged.
375 |M      |Resolve unmerged file by launching git-mergetool(1). Note, to work
376          correctly this might require some initial configuration of your
377          preferred merge tool. See the manpage of git-mergetool(1).
378 |!      |Checkout file with unstaged changes. This will reset the file to
379          contain the content it had at last commit.
380 |1      |Stage single diff line.
381 |@      |Move to next chunk in the stage view.
382 |]      |Increase the diff context.
383 |[      |Decrease the diff context.
384 |=============================================================================
386 [[cursor-nav]]
387 Cursor Navigation
388 ~~~~~~~~~~~~~~~~~
390 [frame="none",grid="none",cols="2<,8<",options="header"]
391 |=============================================================================
392 |Key            |Action
393 |k              |Move cursor one line up.
394 |j              |Move cursor one line down.
395 |PgUp,-,a       |Move cursor one page up.
396 |PgDown, Space  |Move cursor one page down.
397 |End            |Jump to last line.
398 |Home           |Jump to first line.
399 |=============================================================================
401 [[view-scrolling]]
402 Scrolling
403 ~~~~~~~~~
405 [frame="none",grid="none",cols="2<,8<",options="header"]
406 |=============================================================================
407 |Key    |Action
408 |Insert |Scroll view one line up.
409 |Delete |Scroll view one line down.
410 |ScrBack|Scroll view one page up.
411 |ScrFwd |Scroll view one page down.
412 |Left   |Scroll view one column left.
413 |Right  |Scroll view one column right.
414 |\|     |Scroll view to the first column.
415 |=============================================================================
417 [[searching]]
418 Searching
419 ~~~~~~~~~
421 [frame="none",grid="none",cols="2<,8<",options="header"]
422 |=============================================================================
423 |Key    |Action
424 |/      |Search the view. Opens a prompt for entering search regexp to use.
425 |?      |Search backwards in the view. Also prompts for regexp.
426 |n      |Find next match for the current search regexp.
427 |N      |Find previous match for the current search regexp.
428 |=============================================================================
430 [[misc-keys]]
431 Misc
432 ~~~~
434 [frame="none",grid="none",cols="2<,8<",options="header"]
435 |=============================================================================
436 |Key    |Action
437 |Q      |Quit.
438 |<C-L>  |Redraw screen.
439 |z      |Stop all background loading. This can be useful if you use
440          Tig in a repository with a long history without limiting
441          the revision log.
442 |v      |Show version.
443 |o      |Open option menu
444 |#      |Toggle line numbers on/off.
445 |D      |Toggle date display on/off/short/relative/local.
446 |A      |Toggle author display on/off/abbreviated/email/email user name.
447 |G      |Toggle revision graph visualization on/off.
448 |~      |Toggle (line) graphics mode
449 |F      |Toggle reference display on/off (tag and branch names).
450 |W      |Toggle ignoring whitespace on/off for diffs
451 |X      |Toggle commit ID display on/off
452 |%      |Toggle file filtering in order to see the full diff instead of only
453          the diff concerning the currently selected file.
454 |$      |Toggle highlighting of commit title overflow.
455 |:      |Open prompt. This allows you to specify what command to run.
456 |e      |Open file in editor.
457 |=============================================================================
459 [[prompt]]
460 Prompt
461 ~~~~~~
463 [frame="none",grid="none",cols="2<,8<",options="header"]
464 |=============================================================================
465 |Key                    |Action
466 |:<number>              |Jump to the specific line number, e.g. `:80`.
467 |:<sha>                 |Jump to a specific commit, e.g. `:2f12bcc`.
468 |:<x>                   |Execute the corresponding key binding, e.g. `:q`.
469 |:!<command>            |Execute a system command in a pager, e.g. `:!git log -p`.
470 |:<action>              |Execute a Tig command, e.g. `:edit`.
471 |:save-display <file>   |Save current display to `<file>`.
472 |:save-options <file>   |Save current options to `<file>`.
473 |:script <file>         |Execute commands from `<file>`.
474 |:exec <flags><args...> |Execute command using `<args>` with external
475                          user-defined command option flags defined in `<flags>`.
476 |=============================================================================
478 [[external-commands]]
479 External Commands
480 ~~~~~~~~~~~~~~~~~
482 For more custom needs, external commands provide a way to easily execute
483 a script or program. They are bound to keys and use information from the
484 current browsing state, such as the current commit ID. Tig comes with
485 the following built-in external commands:
487 [frame="none",grid="none",cols="1<,1<,8<",options="header"]
488 |=============================================================================
489 |Keymap |Key    |Action
490 |main   |C      |git cherry-pick %(commit)
491 |status |C      |git commit
492 |generic|G      |git gc
493 |=============================================================================
495 [[refspec]]
496 Revision Specification
497 ----------------------
499 This section describes various ways to specify what revisions to display or
500 otherwise limit the view to. Tig does not itself parse the described
501 revision options so refer to the relevant Git man pages for further
502 information. Relevant man pages besides git-log(1) are git-diff(1) and
503 git-rev-list(1).
505 You can tune the interaction with Git by making use of the options explained
506 in this section. For example, by configuring the environment variable
507 described in the section on <<diff-options, diff options>>.
509 [[path-limiting]]
510 Limit by Path Name
511 ~~~~~~~~~~~~~~~~~~
513 If you are interested only in those revisions that made changes to a specific
514 file (or even several files) list the files like this:
516 -----------------------------------------------------------------------------
517 $ tig Makefile README
518 -----------------------------------------------------------------------------
520 To avoid ambiguity with Tig's subcommands or repository references such as tag
521 names, be sure to separate file names from other Git options using "`--`". So
522 if you have a file named 'status' it will clash with the 'status' subcommand,
523 and thus you will have to use:
525 -----------------------------------------------------------------------------
526 $ tig -- status
527 -----------------------------------------------------------------------------
529 [[date-number-limiting]]
530 Limit by Date or Number
531 ~~~~~~~~~~~~~~~~~~~~~~~
533 To speed up interaction with Git, you can limit the amount of commits to show
534 both for the log and main view. Either limit by date using e.g.
535 `--since=1.month` or limit by the number of commits using `-n400`.
537 If you are only interested in changes that happened between two dates you can
538 use:
540 -----------------------------------------------------------------------------
541 $ tig --after="May 5th" --before="2006-05-16 15:44"
542 -----------------------------------------------------------------------------
544 NOTE: If you want to avoid having to quote dates containing spaces you can use
545 "." instead, e.g. `--after=May.5th`.
547 [[commit-range-limiting]]
548 Limiting by Commit Ranges
549 ~~~~~~~~~~~~~~~~~~~~~~~~~
551 Alternatively, commits can be limited to a specific range, such as "all
552 commits between 'tag-1.0' and 'tag-2.0'". For example:
554 -----------------------------------------------------------------------------
555 $ tig tag-1.0..tag-2.0
556 -----------------------------------------------------------------------------
558 This way of commit limiting makes it trivial to only browse the commits which
559 haven't been pushed to a remote branch. Assuming 'origin' is your upstream
560 remote branch, using:
562 -----------------------------------------------------------------------------
563 $ tig origin..HEAD
564 -----------------------------------------------------------------------------
566 will list what will be pushed to the remote branch. Optionally, the ending
567 'HEAD' can be left out since it is implied.
569 [[reachability-limiting]]
570 Limiting by Reachability
571 ~~~~~~~~~~~~~~~~~~~~~~~~
573 Git interprets the range specifier "tag-1.0..tag-2.0" as "all commits
574 reachable from 'tag-2.0' but not from 'tag-1.0'".  Where reachability refers
575 to what commits are ancestors (or part of the history) of the branch or tagged
576 revision in question.
578 If you prefer to specify which commit to preview in this way use the
579 following:
581 -----------------------------------------------------------------------------
582 $ tig tag-2.0 ^tag-1.0
583 -----------------------------------------------------------------------------
585 You can think of '^' as a negation operator. Using this alternate syntax, it
586 is possible to further prune commits by specifying multiple branch cut offs.
588 [[refspec-combi]]
589 Combining Revisions Specification
590 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
592 Revision options can to some degree be combined, which makes it possible to
593 say "show at most 20 commits from within the last month that changed files
594 under the Documentation/ directory."
596 -----------------------------------------------------------------------------
597 $ tig --since=1.month -n20 -- Documentation/
598 -----------------------------------------------------------------------------
600 [[refspec-all]]
601 Examining All Repository References
602 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
604 In some cases, it can be useful to query changes across all references in a
605 repository. An example is to ask "did any line of development in this
606 repository change a particular file within the last week". This can be
607 accomplished using:
609 -----------------------------------------------------------------------------
610 $ tig --all --since=1.week -- Makefile
611 -----------------------------------------------------------------------------
613 More Information
614 ----------------
616 Please visit Tig's http://jonas.nitro.dk/tig[home page] or
617 https://github.com/jonas/tig[main Git repository] for information about
618 new releases and how to report bugs and feature requests.
620 [[copy-right]]
621 Copyright
622 ---------
624 Copyright (c) 2006-2014 Jonas Fonseca <jonas.fonseca@gmail.com>
626 This program is free software; you can redistribute it and/or modify
627 it under the terms of the GNU General Public License as published by
628 the Free Software Foundation; either version 2 of the License, or
629 (at your option) any later version.
631 [[references]]
632 See Also
633 --------
635 Manpages:
637 ifdef::version[]
638  - manpage:tig[1]
639  - manpage:tigrc[5]
640 endif::version[]
641 ifndef::version[]
642  - link:tig.1.adoc[tig(1)]
643  - link:tigrc.5.adoc[tigrc(5)]
644 endif::version[]