Skip to content

Instantly share code, notes, and snippets.

@kartben
Last active October 20, 2016 19:26
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 kartben/9c69dcdce0d8ba83bd4875a03099580f to your computer and use it in GitHub Desktop.
Save kartben/9c69dcdce0d8ba83bd4875a03099580f to your computer and use it in GitHub Desktop.
find . -type d -depth 1 -exec sh -c "git --git-dir={}/.git --work-tree=$PWD/{} log --since '1 year ago' --until 'yesterday' --format='%aN' | sort -uf" \; | sort -uf
# 1 year ago
find . -type d -depth 1 -exec sh -c "git --git-dir={}/.git --work-tree=$PWD/{} log --since '2 years ago' --until '1 year ago' --format='%aN' | sort -uf" \; | sort -uf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment