TOOL/VCS
[Git] 개발자별로 작업한 코드 줄 수 확인하기
forgiveall
2019. 12. 23. 13:26
Git
당신이 작업하는 Git
폴더에 가서 다음과 같이 다음 git 명령어를 때려보자
작업자별 작업 코드 줄 수(code line count) 확인
명령어 (조금 오래 걸린다..)
git ls-files | while read f; do git blame --line-porcelain $f | grep '^author '; done | sort -f | uniq -ic | sort -n
결과
1 author Administrator 2 author Not Committed Yet 17 Binary file (standard input) matches 297 author someone 676 author sss787 3658 author sam 9222 author jangabc 33037 author sjeesj
Reference - 참조
- Count Code lines: https://gist.github.com/amitchhajer/4461043