Finding most changed files in Git

前端 未结 9 1672
野的像风
野的像风 2020-11-29 15:24

How can I show files in Git which change most often?

9条回答
  •  不知归路
    2020-11-29 16:09

    For powershell, assuming you got git bash installed

    git log --pretty=format: --name-only | sort | uniq -c | sort -Descending | select -First 10
    

提交回复
热议问题