Show number of changed lines per author in git

后端 未结 6 912
灰色年华
灰色年华 2020-12-13 02:48

i want to see the number of removed/added line, grouped by author for a given branch in git history. there is git shortlog -s which shows me the number of commi

6条回答
  •  囚心锁ツ
    2020-12-13 03:10

    It's an old post but if someone is still looking for it:

    install git extras

    brew install git-extras
    

    then

    git summary --line
    

    https://github.com/tj/git-extras

提交回复
热议问题