1git-blame(1) 2============ 3 4NAME 5---- 6git-blame - Blame file lines on commits 7 8SYNOPSIS 9-------- 10git-blame file [options] file [revision] 11 12DESCRIPTION 13----------- 14Annotates each line in the given file with information from the commit 15which introduced the line. Start annotation from the given revision. 16 17OPTIONS 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 35SEE ALSO 36-------- 37gitlink:git-annotate[1] 38 39AUTHOR 40------ 41Written by Fredrik Kuivinen <freku045@student.liu.se>. 42 43GIT 44--- 45Part of the gitlink:git[7] suite