Skip to content

Instantly share code, notes, and snippets.

@carols10cents
Created May 3, 2016 22:15
Show Gist options
  • Select an option

  • Save carols10cents/f89deef257778ed991f299171c7cf1bb to your computer and use it in GitHub Desktop.

Select an option

Save carols10cents/f89deef257778ed991f299171c7cf1bb to your computer and use it in GitHub Desktop.
Scripts to figure out interesting stats for a year since 1.0
#!/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