-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Hackathon 2017 bsd
Heiko Strathmann edited this page Dec 17, 2017
·
1 revision
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'