标签:
$ 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 }‘ -
标签:
原文地址:http://www.cnblogs.com/8765h/p/5378022.html