]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-annotate.txt
Merge branch 'master' of github.com:vnwildman/git
[thirdparty/git.git] / Documentation / git-annotate.txt
CommitLineData
8f2b72a9
JF
1git-annotate(1)
2===============
3
4NAME
5----
a7d64b52 6git-annotate - Annotate file lines with commit information
8f2b72a9
JF
7
8SYNOPSIS
9--------
7791a1d9 10[verse]
de613050 11'git annotate' [<options>] <file> [<revision>]
8f2b72a9
JF
12
13DESCRIPTION
14-----------
15Annotates each line in the given file with information from the commit
a7d64b52 16which introduced the line. Optionally annotates from a given revision.
8f2b72a9 17
f22a432b
JH
18The only difference between this command and linkgit:git-blame[1] is that
19they use slightly different output formats, and this command exists only
a7d64b52 20for backward compatibility to support existing scripts, and provide a more
f22a432b
JH
21familiar command name for people coming from other SCM systems.
22
8f2b72a9
JF
23OPTIONS
24-------
635f4a30 25include::blame-options.txt[]
8f2b72a9
JF
26
27SEE ALSO
28--------
5162e697 29linkgit:git-blame[1]
8f2b72a9 30
8f2b72a9
JF
31GIT
32---
9e1f0a85 33Part of the linkgit:git[1] suite