mosesdecoder/scripts/other/blame-stat.sh

5 lines
258 B
Bash
Raw Normal View History

2014-10-31 04:07:33 +03:00
git ls-files | xargs -n1 git blame --line-porcelain | sed -n 's/^author //p' | sort -f | uniq -ic | sort -nr
2014-11-14 16:56:56 +03:00
#git ls-files | grep -Ei "\.h$|\.cpp$|\.hh$|\.cc$" | xargs -n1 git blame --line-porcelain | sed -n 's/^author //p' | sort -f | uniq -ic | sort -nr
2014-10-31 04:07:33 +03:00