Skip to content

Instantly share code, notes, and snippets.

View CommodoreBeard's full-sized avatar

Joseph Hughes CommodoreBeard

View GitHub Profile

Keybase proof

I hereby claim:

  • I am commodorebeard on github.
  • I am commodorebeard (https://keybase.io/commodorebeard) on keybase.
  • I have a public key ASArD80FkIhE-wtLXiygDpXjUBcnD_08HMzV93Ue7vjDRAo

To claim this, I am signing this object:

@CommodoreBeard
CommodoreBeard / test-contributors.sh
Created August 20, 2018 11:35
Percent of Developers who Write Tests
#!/usr/bin/env bash
function getContributors() {
git ls-tree -r --name-only master $1 | while read file ; do
git log --follow --pretty=format:%an $file | sort | uniq
done | sort | uniq
return 0
}
allContributors=()
while read -r user; do