问题
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.
回答1:
Very simple:
git blame -L 84,84 index.html
来源:https://stackoverflow.com/questions/19352303/see-who-last-changed-a-specific-line-in-a-git-repo