irm
irm

Reputation: 4331

See who last changed a specific line in a Git repo

I have use git blame and git log file.py to find changes, but is there a way to see the changes on a specific line on a file? For example: Line 84 on file index.html.

Upvotes: 1

Views: 2990

Answers (1)

FelipeC
FelipeC

Reputation: 9488

Very simple:

git blame -L 84,84 index.html

Upvotes: 8

Related Questions