blob: 7baf73111bc6e4fa7668f8aec31b95f20698a6ae [file] [log] [blame]
Junio C Hamanob33fb4f2006-04-18 21:30:511git-annotate(1)
2===============
3
4NAME
5----
6git-annotate - Annotate file lines with commit info
7
8SYNOPSIS
9--------
10git-annotate [options] file [revision]
11
12DESCRIPTION
13-----------
14Annotates each line in the given file with information from the commit
15which introduced the line. Optionally annotate from a given revision.
16
17OPTIONS
18-------
19-l, --long::
20Show long rev (Defaults off).
21
22-t, --time::
23Show raw timestamp (Defaults off).
24
25-r, --rename::
26Follow renames (Defaults on).
27
28-S, --rev-file <revs-file>::
29Use revs from revs-file instead of calling git-rev-list.
30
31-h, --help::
32Show help message.
33
34SEE ALSO
35--------
36gitlink:git-blame[1]
37
38AUTHOR
39------
40Written by Ryan Anderson <ryan@michonline.com>.
41
42GIT
43---
44Part of the gitlink:git[7] suite