赵走x博客
网站访问量:151533
首页
书籍
软件
工具
古诗词
搜索
登录
ubuntu保存git账户
git跳过eslint代码检查
Git版本回退
Git服务器代码冲突
Git统计指定人指定时间的代码提交和新增行数
Git统计指定人指定时间的代码提交和新增行数
资源编号:551902
热度:106
Git统计指定人指定时间的代码提交和新增行数
``` git log --author="sunqq" --after=2023-9-01 --before=2023-9-30 --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 }' ```