blame: Add --time to produce raw timestamps
[git.git] / Documentation / git-blame.txt
1 git-blame(1)
2 ============
3
4 NAME
5 ----
6 git-blame - Blame file lines on commits
7
8 SYNOPSIS
9 --------
10 git-blame file [options] file [revision]
11
12 DESCRIPTION
13 -----------
14 Annotates each line in the given file with information from the commit
15 which introduced the line. Start annotation from the given revision.
16
17 OPTIONS
18 -------
19 -c, --compatibility::
20         Use the same output mode as git-annotate (Default: off).
21
22 -l, --long::
23         Show long rev (Default: off).
24
25 -t, --time::
26         Show raw timestamp (Default: off).
27
28 -S, --rev-file <revs-file>::
29         Use revs from revs-file instead of calling git-rev-list.
30
31 -h, --help::
32         Show help message.
33
34
35 SEE ALSO
36 --------
37 gitlink:git-annotate[1]
38
39 AUTHOR
40 ------
41 Written by Fredrik Kuivinen <freku045@student.liu.se>.
42
43 GIT
44 ---
45 Part of the gitlink:git[7] suite