如何显示 git 中添加(和删除)的行数?

如何显示 git 中添加(和删除)的行数?

我必须显示所有提交添加(和删除)到某个文件的行数。

答案1

使用git log --numstat --oneline <Filename>。这将为您提供文件的提交列表<Filename>,每个提交两行,使用以下语法:

[sha hash] [commit title line]
[lines added] [lines removed] [path to file in repository]

相关内容