変更の多いコードを見つける
コミットが多い順
code:shellscript
git log --name-only --oneline --no-merges --pretty="format:" --since="1 years ago" ats-selection | grep "^\+s" | grep -E '.scala' | grep -v "/test/" | sort | uniq -c | sort -r | head 追加、削除が多い順
code:shellscript
git log --numstat --oneline --no-merges --pretty="%H" --since="1 years ago" ats-selection | grep "^\+s" | grep -E '.scala' | grep -v "/test/" | grep -v "Tables.scala" | awk 'NF==3 {add_sum$3+=$1; del_sum$3+=$2} END {for (key in add_sum) {printf("%d, %d, %s\n", add_sumkey,del_sumkey,key)}}' | sort -k1,1nr -k2,2nr -t,| head -n 10