Skip to content
Heiko Strathmann edited this page Dec 17, 2017 · 1 revision

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'
Clone this wiki locally