Skip to content

Instantly share code, notes, and snippets.

@bradlucas
Last active April 12, 2016 18:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bradlucas/c77b5cfe99e4e7f4328e to your computer and use it in GitHub Desktop.
Save bradlucas/c77b5cfe99e4e7f4328e to your computer and use it in GitHub Desktop.
get-all-first-commit-authors.sh
#!/bin/sh
(for f in `find . -maxdepth 1`;
do
pushd > /dev/null $f
get-first-commit-log.sh | grep -m 1 Author: | cut -f2- -d' '
popd > /dev/null
done) | sort --ignore-case | uniq
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment