Skip to content

Instantly share code, notes, and snippets.

@matthewsimo
Created August 16, 2016 22:01
Show Gist options
  • Select an option

  • Save matthewsimo/0d2da9fdc53754fae1039946efb5df28 to your computer and use it in GitHub Desktop.

Select an option

Save matthewsimo/0d2da9fdc53754fae1039946efb5df28 to your computer and use it in GitHub Desktop.
Some fun git commands
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 }'
git shortlog -s
@matthewsimo
Copy link
Copy Markdown
Author

matthewsimo commented Aug 16, 2016

1: List a user's added, removed line count
2: List all users commit counts

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment