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/4a5af981a8829d549cad to your computer and use it in GitHub Desktop.
Save bradlucas/4a5af981a8829d549cad to your computer and use it in GitHub Desktop.
get-all-first-commit-authors-repos.sh
#!/bin/sh
# For each Repo show Author and the Repo Name
(for f in `find . -maxdepth 1`;
do
pushd > /dev/null $f
echo "$(get-first-commit-log.sh | grep -m 1 Author: | cut -f2- -d' ') : $f"
popd > /dev/null
done)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment