#提交的代码量统计
git log  --since ==2019-01-01 --until=2019-12-31 --pretty=tformat: --numstat | awk '{ add += $1; subs += $2; loc += $1 - $2 } END { printf "新增: %s, 删除: %s,,累计: %sn", add, subs, loc }' -

 

#统计提交的次数
git log --since ==2019-01-01 --until=2019-12-31 | wc -l

 

相关文章:

  • 2021-08-29
  • 2021-11-01
  • 2022-12-23
  • 2022-01-26
  • 2022-12-23
  • 2021-11-05
  • 2021-08-09
猜你喜欢
  • 2021-08-13
  • 2022-12-23
  • 2021-12-11
  • 2021-12-20
  • 2021-11-07
  • 2021-10-25
  • 2021-04-07
相关资源
相似解决方案