git log --author="name"  --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统计代码行数

 

git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log   --author="$name" --pretty=tformat: --numstat  | grep "\(.vue\|.js\|.css\|.ts\)$" | grep -v -i "generatorApi/"  | grep -v -i "/api/" | grep -v -i "public/" | awk '{ add += $1; subs += $2; loc += $1 + $2 } END { printf "added lines: %s, removed lines: %s, total lines: %s\n", add, subs, loc }' -; done     

效果

【前端开发】git统计代码行数

 

相关文章:

  • 2022-01-19
  • 2022-12-23
  • 2022-12-23
  • 2021-11-16
  • 2021-08-09
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-09-09
  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案