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