Finding most changed files in Git

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

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

9条回答
  •  遥遥无期
    2020-11-29 16:09

    We can also find out files changed between two commits or branches, for e.g.

    git log  --pretty=format: --name-only ... | sort | uniq -c | sort -rg | head -50 
    

提交回复
热议问题