Commit | Line | Data |
---|---|---|
8f2b72a9 JF |
1 | git-annotate(1) |
2 | =============== | |
3 | ||
4 | NAME | |
5 | ---- | |
6 | git-annotate - Annotate file lines with commit info | |
7 | ||
8 | SYNOPSIS | |
9 | -------- | |
483bc4f0 | 10 | 'git annotate' [options] file [revision] |
8f2b72a9 JF |
11 | |
12 | DESCRIPTION | |
13 | ----------- | |
14 | Annotates each line in the given file with information from the commit | |
15 | which introduced the line. Optionally annotate from a given revision. | |
16 | ||
f22a432b JH |
17 | The only difference between this command and linkgit:git-blame[1] is that |
18 | they use slightly different output formats, and this command exists only | |
19 | for backward compatibility to support existing scripts, and provide more | |
20 | familiar command name for people coming from other SCM systems. | |
21 | ||
8f2b72a9 JF |
22 | OPTIONS |
23 | ------- | |
635f4a30 | 24 | include::blame-options.txt[] |
8f2b72a9 JF |
25 | |
26 | SEE ALSO | |
27 | -------- | |
5162e697 | 28 | linkgit:git-blame[1] |
8f2b72a9 JF |
29 | |
30 | AUTHOR | |
31 | ------ | |
32 | Written by Ryan Anderson <ryan@michonline.com>. | |
33 | ||
34 | GIT | |
35 | --- | |
9e1f0a85 | 36 | Part of the linkgit:git[1] suite |