[GIT常用命令] 枚举对某个文件的提交记录
在GIT中枚举对某单个所作的所有提交记录:
git log --follow <文件路径>
“--follow”会跟踪文件命名操作,更多可参考 GIT文档 或 git - List all commits for a specific file - Stack Overflow。
在GIT中枚举对某单个所作的所有提交记录:
git log --follow <文件路径>
“--follow”会跟踪文件命名操作,更多可参考 GIT文档 或 git - List all commits for a specific file - Stack Overflow。