Hackathon 2017 bsd - shogun-toolbox/shogun GitHub Wiki
Tools
Get all file authors, sorted by number of commits
git log --format=%aN src/shogun/base/init.cpp | sort | uniq -c | sort | sort -nr | cut -d ' ' -f8-
Find all files with "something like a GPL header"
find . -type f -name *.h* -o -name *.cpp | xargs grep 'is free software'