Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 1 | git-annotate(1) |
| 2 | =============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
David J. Mellor | a7d64b5 | 2009-03-01 22:38:36 -0800 | [diff] [blame] | 6 | git-annotate - Annotate file lines with commit information |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Martin von Zweigbergk | 7791a1d | 2011-07-01 22:38:26 -0400 | [diff] [blame] | 10 | [verse] |
Robert P. J. Day | de61305 | 2018-05-24 16:11:39 -0400 | [diff] [blame] | 11 | 'git annotate' [<options>] <file> [<revision>] |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | Annotates each line in the given file with information from the commit |
David J. Mellor | a7d64b5 | 2009-03-01 22:38:36 -0800 | [diff] [blame] | 16 | which introduced the line. Optionally annotates from a given revision. |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 17 | |
Junio C Hamano | f22a432 | 2008-09-05 00:29:51 -0700 | [diff] [blame] | 18 | The only difference between this command and linkgit:git-blame[1] is that |
| 19 | they use slightly different output formats, and this command exists only |
David J. Mellor | a7d64b5 | 2009-03-01 22:38:36 -0800 | [diff] [blame] | 20 | for backward compatibility to support existing scripts, and provide a more |
Junio C Hamano | f22a432 | 2008-09-05 00:29:51 -0700 | [diff] [blame] | 21 | familiar command name for people coming from other SCM systems. |
| 22 | |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 23 | OPTIONS |
| 24 | ------- |
Andrew Ruder | 635f4a3 | 2007-04-16 01:20:34 -0500 | [diff] [blame] | 25 | include::blame-options.txt[] |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 26 | |
| 27 | SEE ALSO |
| 28 | -------- |
Dan McGee | 5162e69 | 2007-12-29 00:20:38 -0600 | [diff] [blame] | 29 | linkgit:git-blame[1] |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 30 | |
Jonas Fonseca | 8f2b72a | 2006-03-06 06:24:44 +0100 | [diff] [blame] | 31 | GIT |
| 32 | --- |
Christian Couder | 9e1f0a8 | 2008-06-06 09:07:32 +0200 | [diff] [blame] | 33 | Part of the linkgit:git[1] suite |