我想看看是谁对特定行号上的文件进行了特定的更改。例如:
有办法这样做吗?目前我这样做的方式是查看每个代码推送到这个文件,并且有相当多的需要审查。
发布于 2020-02-25 23:56:17
是的,查一下git blame。
git blame
git-blame - Show what revision and author last modified each line of a file
另见:https://www.git-scm.com/docs/git-blame
https://stackoverflow.com/questions/60404836
相似问题