Last active
December 7, 2022 20:08
-
-
Save csantanapr/3405e6803c80aa5765fc0a9f1249dec2 to your computer and use it in GitHub Desktop.
Knative DUX WG git stats
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env sh | |
rm -rf docs | |
git clone https://github.com/knative/docs.git | |
pushd docs > /dev/null | |
git log --branches --pretty=format:"%ad,%an" --date=short > ../docs.raw.txt | |
popd > /dev/null | |
cat docs.raw.txt | awk -F',' '$0 >= "2022-03-14"' > 3months.raw.txt | |
cat 3months.raw.txt | cut -f2 -d, | sort | uniq -c | sort -k1 -n -r |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment