Created
May 3, 2016 22:15
-
-
Save carols10cents/f89deef257778ed991f299171c7cf1bb to your computer and use it in GitHub Desktop.
Scripts to figure out interesting stats for a year since 1.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| set -eu | |
| git log --format="%aN" c01efc669f09508b55eced32d3c88702578a7c3e..1.0.0 | sort | uniq > beginning-to-1.0.txt | |
| git log --format="%aN" 1.0.0.. | sort | uniq > 1.0-to-HEAD.txt | |
| grep -v -f beginning-to-1.0.txt 1.0-to-HEAD.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment