Skip to content

Instantly share code, notes, and snippets.

@ianpartridge
Created August 2, 2017 11: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 ianpartridge/e10d18a7647d166a0c3604224abf0994 to your computer and use it in GitHub Desktop.
Save ianpartridge/e10d18a7647d166a0c3604224abf0994 to your computer and use it in GitHub Desktop.
Show the number of NSUnimplemented() methods in swift-corelibs-foundation over time
#!/bin/bash
for commit in $(git rev-list --no-merges master)
do
DATE=$(git show -s --date=iso-local --format=%cd $commit)
COUNT=$(git grep NSUnimplemented $commit | wc -l)
echo "$commit, $DATE, $COUNT"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment