-
-
Save lance/38016dcaeef6cab41f3af59a1a73036d to your computer and use it in GitHub Desktop.
Knative DUX WG git stats
This file contains hidden or 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
out=$(mktemp) | |
date=${1:-2022-06-23} | |
echo "Getting contributions to docs since $date" | |
[email protected]:knative/docs.git | |
tmpdir=$(dirname $(mktemp -u)) | |
cd ${tmpdir} | |
git clone ${REPO} --quiet | |
pushd "$(basename "${REPO}" .git)" >> /dev/null | |
git log --pretty=format:"%ad,%an" --date=short > ../docs.raw.txt | |
popd > /dev/null | |
cat docs.raw.txt | awk -F',' '$0 >= "2022-06-23"' > 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