Skip to content

Instantly share code, notes, and snippets.

@albertodebortoli
Created May 10, 2014 13:08
Show Gist options
  • Select an option

  • Save albertodebortoli/e7df34c65b67e550b694 to your computer and use it in GitHub Desktop.

Select an option

Save albertodebortoli/e7df34c65b67e550b694 to your computer and use it in GitHub Desktop.
Git count of lines
git shortlog -s -n
git log --author="__YOUR_NAME_HERE__" --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