Skip to content

Instantly share code, notes, and snippets.

@sprobejames
Created July 18, 2024 00:21
Show Gist options
  • Select an option

  • Save sprobejames/4d98b67d05ed419c46da793a8fb51de1 to your computer and use it in GitHub Desktop.

Select an option

Save sprobejames/4d98b67d05ed419c46da793a8fb51de1 to your computer and use it in GitHub Desktop.
Get lines of code by user See https://stackoverflow.com/a/25876133
#!/bin/bash
git log --format='%aN' | sort -u | while read name; do echo -en "$name\t"; git log --author="$name" --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 }' -; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment