Skip to content

Instantly share code, notes, and snippets.

@edwardzjl
Last active December 13, 2023 06:28
Show Gist options
  • Save edwardzjl/b4ec21da5a43dbb8c8e58b2080a3e449 to your computer and use it in GitHub Desktop.
Save edwardzjl/b4ec21da5a43dbb8c8e58b2080a3e449 to your computer and use it in GitHub Desktop.
Count code lines of a git repo
git log --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