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 (Defaults off). 24 25-S, --rev-file <revs-file>:: 26 Use revs from revs-file instead of calling git-rev-list. 27 28-h, --help:: 29 Show help message. 30 31 32SEE ALSO 33-------- 34gitlink:git-annotate[1] 35 36AUTHOR 37------ 38Written by Fredrik Kuivinen <freku045@student.liu.se>. 39 40GIT 41--- 42Part of the gitlink:git[7] suite