Skip to content

Instantly share code, notes, and snippets.

@navono
Last active August 22, 2018 00:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save navono/528eda80c078ed2fc95c5042a3cee47e to your computer and use it in GitHub Desktop.
Save navono/528eda80c078ed2fc95c5042a3cee47e to your computer and use it in GitHub Desktop.
用来统计git log中的每个人的 【新增】【删除】【总行数】信息
git log --author="navono" --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 }' -
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment