进入你的git工程文件夹,右键选择 git base here ,然后粘贴命令:
git log --since="2020-11-11" --before="2020-12-13" --author="$(git config --get user.name)" --pretty=tformat: --numstat | gawk '{ add += $1 ; subs += $2 ; loc += $1 - $2 } END { printf "added lines: %s removed lines : %s total lines: %s\n",add,subs,loc }'
since 开始统计时间,before 结束统计时间;
效果: