统计 git 提交行数
2021-01-14 本文已影响0人
前端技师胡帅博
git log --author="theLongGoodbye" --since=2019-01-01 --until=2021-01-31 --pretty=tformat: --numstat | awk '{ add += 2; loc += 2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -