Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 1 | git-annotate(1) |
| 2 | =============== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 7924d5e | 2009-03-03 08:28:48 | [diff] [blame] | 6 | git-annotate - Annotate file lines with commit information |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 7 | |
| 8 | SYNOPSIS |
| 9 | -------- |
Junio C Hamano | 15567bc | 2011-07-23 00:51:59 | [diff] [blame] | 10 | [verse] |
Junio C Hamano | cf9c773 | 2022-10-28 18:56:06 | [diff] [blame] | 11 | 'git annotate' [<options>] [<rev-opts>] [<rev>] [--] <file> |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 12 | |
| 13 | DESCRIPTION |
| 14 | ----------- |
| 15 | Annotates each line in the given file with information from the commit |
Junio C Hamano | 7924d5e | 2009-03-03 08:28:48 | [diff] [blame] | 16 | which introduced the line. Optionally annotates from a given revision. |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 17 | |
Junio C Hamano | f87ade6 | 2008-09-07 06:05:51 | [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 |
Junio C Hamano | 7924d5e | 2009-03-03 08:28:48 | [diff] [blame] | 20 | for backward compatibility to support existing scripts, and provide a more |
Junio C Hamano | f87ade6 | 2008-09-07 06:05:51 | [diff] [blame] | 21 | familiar command name for people coming from other SCM systems. |
| 22 | |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 23 | OPTIONS |
| 24 | ------- |
Junio C Hamano | 0e3cb53 | 2007-04-17 08:28:11 | [diff] [blame] | 25 | include::blame-options.txt[] |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 26 | |
| 27 | SEE ALSO |
| 28 | -------- |
Junio C Hamano | 35738e8 | 2008-01-07 07:55:46 | [diff] [blame] | 29 | linkgit:git-blame[1] |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 30 | |
Junio C Hamano | b33fb4f | 2006-04-18 21:30:51 | [diff] [blame] | 31 | GIT |
| 32 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 33 | Part of the linkgit:git[1] suite |