Skip to content

Instantly share code, notes, and snippets.

View nuhkoca's full-sized avatar
🇩🇪
In Berlin

Nuh Koca nuhkoca

🇩🇪
In Berlin
View GitHub Profile
@nuhkoca
nuhkoca / linguist-runner.sh
Created November 11, 2019 13:36 — forked from burntcookie90/linguist-runner.sh
runs linguist on ever commit since a date
#!/usr/bin/bash
for commit in $(git --no-pager log --reverse --after="2016-10-01T10:36:00-07:00" --pretty=format:%H)
do
echo $commit
git checkout $commit
#write linguist data to a file
echo "" >> ~/repo-linguist-report.txt
echo "commit: $commit" >> ~/repo-linguist-report.txt