2006-03-06 08:24:44 +03:00
|
|
|
git-annotate(1)
|
|
|
|
===============
|
|
|
|
|
|
|
|
NAME
|
|
|
|
----
|
2009-03-02 09:38:36 +03:00
|
|
|
git-annotate - Annotate file lines with commit information
|
2006-03-06 08:24:44 +03:00
|
|
|
|
|
|
|
SYNOPSIS
|
|
|
|
--------
|
2011-07-02 06:38:26 +04:00
|
|
|
[verse]
|
2022-10-13 18:39:20 +03:00
|
|
|
'git annotate' [<options>] [<rev-opts>] [<rev>] [--] <file>
|
2006-03-06 08:24:44 +03:00
|
|
|
|
|
|
|
DESCRIPTION
|
|
|
|
-----------
|
|
|
|
Annotates each line in the given file with information from the commit
|
2009-03-02 09:38:36 +03:00
|
|
|
which introduced the line. Optionally annotates from a given revision.
|
2006-03-06 08:24:44 +03:00
|
|
|
|
2008-09-05 11:29:51 +04:00
|
|
|
The only difference between this command and linkgit:git-blame[1] is that
|
|
|
|
they use slightly different output formats, and this command exists only
|
2009-03-02 09:38:36 +03:00
|
|
|
for backward compatibility to support existing scripts, and provide a more
|
2008-09-05 11:29:51 +04:00
|
|
|
familiar command name for people coming from other SCM systems.
|
|
|
|
|
2006-03-06 08:24:44 +03:00
|
|
|
OPTIONS
|
|
|
|
-------
|
2007-04-16 10:20:34 +04:00
|
|
|
include::blame-options.txt[]
|
2006-03-06 08:24:44 +03:00
|
|
|
|
|
|
|
SEE ALSO
|
|
|
|
--------
|
2007-12-29 09:20:38 +03:00
|
|
|
linkgit:git-blame[1]
|
2006-03-06 08:24:44 +03:00
|
|
|
|
|
|
|
GIT
|
|
|
|
---
|
2008-06-06 11:07:32 +04:00
|
|
|
Part of the linkgit:git[1] suite
|