$ git log --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 }' -git 中有这行命令统计提交代码的行数删减数量,就是不知道出来的结果包含不包含 package-lock.json 中的改动,因为两台电脑上提交的时候 package-lock.json 自动会删减很多行代码。
添加回答
举报
0/150
提交
取消