Git - list all authors of a folder of files?

后端 未结 3 1194
梦毁少年i
梦毁少年i 2021-02-03 23:11

How can I list the author names of a particular folder that\'s versioned by git?

I see that I can git blame a file and list the author of each line, but I c

3条回答
  •  终归单人心
    2021-02-03 23:44

    Based on The shortest possible output from git log containing author and date

    do this

    git log --pretty=format:"%an%x09" myfolder | sort | uniq
    

提交回复
热议问题