Last active
December 18, 2015 11:59
-
-
Save XueshiQiao/5779128 to your computer and use it in GitHub Desktop.
按提交次数显示一个Git repo提交人
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git log | grep "Author" | cut -d" " -f3 | sort | uniq -c | sort -r | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
结果如下:
排序显示提交人和提交次数 从 tangqiaoboy 那学过来的 :)