]> git.ipfire.org Git - thirdparty/git.git/blame - Documentation/git-annotate.txt
Fix odd markup in --diff-filter documentation
[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--------
483bc4f0 10'git annotate' [options] file [revision]
8f2b72a9
JF
11
12DESCRIPTION
13-----------
14Annotates each line in the given file with information from the commit
a7d64b52 15which introduced the line. Optionally annotates from a given revision.
8f2b72a9 16
f22a432b
JH
17The only difference between this command and linkgit:git-blame[1] is that
18they use slightly different output formats, and this command exists only
a7d64b52 19for backward compatibility to support existing scripts, and provide a more
f22a432b
JH
20familiar command name for people coming from other SCM systems.
21
8f2b72a9
JF
22OPTIONS
23-------
635f4a30 24include::blame-options.txt[]
8f2b72a9
JF
25
26SEE ALSO
27--------
5162e697 28linkgit:git-blame[1]
8f2b72a9
JF
29
30AUTHOR
31------
32Written by Ryan Anderson <ryan@michonline.com>.
33
34GIT
35---
9e1f0a85 36Part of the linkgit:git[1] suite