chevron_left
Common questions
0
0
0
new
What does 'git blame' do?
Software Development
chevron_rightGit
chevron_rightCommon questions
schedule Mar 9, 2022
Last updated tocTable of Contents
expand_more
The 'git blame'
command displays details on which revision and author last modified each line in the file in question.
Examples
Basic usage
To check which revision and author last modified each line in the file test.txt
:
git blame text.txt
f2cs4e7 (Sky Towner 2021-07-05 03:34:56 +0900 1) hello32wefj6 (Apple Banana 2021-08-10 10:44:22 +0900 2) fromf2cs4e7 (Sky Towner 2021-07-05 03:34:56 -0300 3) SkyTowner
Specifying line range
To check which revision and author last modified lines 0 to 2 in the file test.txt
:
git blame filename -L 0,2
f2cs4e7 (Sky Towner 2021-07-05 03:34:56 +0900 1) hello32wefj6 (Apple Banana 2021-08-10 10:44:22 +0900 2) from
Published by Arthur Yanagisawa
Edited by 0 others
Did you find this page useful?
Ask a question or leave a feedback...
Official Git Documentation
https://git-scm.com/docs/git-blame