Reputation: 4331
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.
git blame
git log file.py
Upvotes: 1
Views: 2990
Reputation: 9488
Very simple:
git blame -L 84,84 index.html
Upvotes: 8