Skip to content

Instantly share code, notes, and snippets.

@norman
Created May 30, 2012 16:05
Show Gist options
  • Save norman/2837274 to your computer and use it in GitHub Desktop.
Save norman/2837274 to your computer and use it in GitHub Desktop.
Git trick to show additions and deletions between branches
git log stable..rails3 --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 }' -
added lines: 13821 removed lines: 16327 total lines: -2506
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment