查询某人某个时刻提交了多少代码
added 添加代码
removed 删除代码
total 总代码
git log --author=刘俊秦 --since='2023-08-01 00:00:00' --until='2023-08-23 23:00:00' --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "added lines: %s, removed lines: %s,total lines: %s\n", add, subs, loc }'
效果图
简洁版(查询某人某个时刻提交了多少代码)
git log --author=刘俊秦 --since='2023-08-01 00:00:00' --until='2023-08-23 23:00:00' --pretty=tformat: --numstat | awk '{loc+=($1-$2)} END {print loc}'
效果图