git-fast-import.txt: --relative-marks takes no parameter
[git/dscho.git] / Documentation / git-annotate.txt
blob9eb75c37dae574f4f9d4699b795f53e94e6fa0dd
1 git-annotate(1)
2 ===============
4 NAME
5 ----
6 git-annotate - Annotate file lines with commit information
8 SYNOPSIS
9 --------
10 'git annotate' [options] file [revision]
12 DESCRIPTION
13 -----------
14 Annotates each line in the given file with information from the commit
15 which introduced the line. Optionally annotates from a given revision.
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 a more
20 familiar command name for people coming from other SCM systems.
22 OPTIONS
23 -------
24 include::blame-options.txt[]
26 SEE ALSO
27 --------
28 linkgit:git-blame[1]
30 GIT
31 ---
32 Part of the linkgit:git[1] suite