实践:
1)
git log -p filenam
可以显示每次提交的diff
2)
git log --pretty=oneline filenam
仅该文件的提交信息
1)=2)+文件具体变动
git查看某个文件的修改历史 - balenofly - 博客园 https://www.cnblogs.com/flyme/archive/2011/11/28/2265899.html
1. git log filename
可以看到fileName相关的commit记录
2. git log -p filenam
可以显示每次提交的diff
3. 只看某次提交中的某个文件变化,可以直接加上fileName
git show c5e69804bbd9725b5dece57f8cbece4a96b9f80b filename
git 查看单独一个文件的修改历史_ahjxhy2010的博客-CSDN博客_git查看某个文件的修改历史 https://blog.csdn.net/ahjxhy2010/article/details/80047553
git 查看单独一个文件的修改历史_ahjxhy2010的博客-CSDN博客_git查看某个文件的修改历史 https://blog.csdn.net/ahjxhy2010/article/details/80047553