标签: git
git shortlog -sne可用于获取曾为该项目做出贡献的所有作者的电子邮件地址。
git shortlog -sne
是否有一个类似的快速命令只计算提交/显示已修改实际源文件(*.cpp,*.h,*.py,*.cmake)的作者?
*.cpp
*.h
*.py
*.cmake
答案 0 :(得分:2)
只需指定路径:
git shortlog -sne -- '*.cpp' '*.h' '*.py' '*.cmake'
必须使用引号来防止shell扩展路径名并让Git逐字接收*。
*