Skip to content

Instantly share code, notes, and snippets.

@XueshiQiao
Last active December 18, 2015 11:59
Show Gist options
  • Save XueshiQiao/5779128 to your computer and use it in GitHub Desktop.
Save XueshiQiao/5779128 to your computer and use it in GitHub Desktop.
按提交次数显示一个Git repo提交人
git log | grep "Author" | cut -d" " -f3 | sort | uniq -c | sort -r
@XueshiQiao
Copy link
Author

结果如下:

toWords git:(develop) ✗ git log | grep "Author" | cut -d" " -f3 | sort | uniq -c | sort -r    

263 <[email protected]>   

排序显示提交人和提交次数 从 tangqiaoboy 那学过来的 :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment