git blame

oh·2021년 2월 14일
1

GIT

목록 보기
1/2

git blame

파일의각행을 마지막으로 수정한사람, 시간, COMMIT ID

git blame {filename}

$ git blame index.html

line 조회 (1부터 시작)

git blame -L <start>, <end> <filename>
git blame -L <start> <filename>
git blame -L <start>, <+num> <filename>  

$ git blame -L 5,7 index.html

$ git blame -L 5 index.html

$ git blame -L 5,+2 index.html

profile
hi~

0개의 댓글