Document the configuration file
[git/dscho.git] / Documentation / git-annotate.txt
blob7baf73111bc6e4fa7668f8aec31b95f20698a6ae
1 git-annotate(1)
2 ===============
4 NAME
5 ----
6 git-annotate - Annotate file lines with commit info
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 annotate from a given revision.
17 OPTIONS
18 -------
19 -l, --long::
20         Show long rev (Defaults off).
22 -t, --time::
23         Show raw timestamp (Defaults off).
25 -r, --rename::
26         Follow renames (Defaults on).
28 -S, --rev-file <revs-file>::
29         Use revs from revs-file instead of calling git-rev-list.
31 -h, --help::
32         Show help message.
34 SEE ALSO
35 --------
36 gitlink:git-blame[1]
38 AUTHOR
39 ------
40 Written by Ryan Anderson <ryan@michonline.com>.
42 GIT
43 ---
44 Part of the gitlink:git[7] suite