Git tricks May 10, 2018 Get link Facebook X Pinterest Email Other Apps Rub that command You will see count code lines per user git ls-files | while read f; do git blame -w -M -C -C --line-porcelain "$f" | grep -I '^author '; done | sort -f | uniq -ic | sort -n Comments
Comments
Post a Comment