统计 git 提交行数

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 }' -

你可能感兴趣的:(统计 git 提交行数)