Skip to content

Instantly share code, notes, and snippets.

@csantanapr
Last active December 7, 2022 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save csantanapr/3405e6803c80aa5765fc0a9f1249dec2 to your computer and use it in GitHub Desktop.
Save csantanapr/3405e6803c80aa5765fc0a9f1249dec2 to your computer and use it in GitHub Desktop.
Knative DUX WG git stats
#!/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