Last active
August 22, 2022 08:52
-
-
Save nak3/36d7a871e5b14370fdfdde284481f76a to your computer and use it in GitHub Desktop.
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
git clone https://github.com/knative/serving.git | |
git clone https://github.com/knative/networking.git | |
git clone https://github.com/knative-sandbox/net-istio.git | |
git clone https://github.com/knative-sandbox/net-contour.git | |
git clone https://github.com/knative-sandbox/net-http01.git | |
git clone https://github.com/knative-sandbox/net-certmanager.git | |
git clone https://github.com/knative-sandbox/net-kourier.git | |
git clone https://github.com/knative-sandbox/net-gateway-api.git | |
# knative/serving | |
NETWORKING_DIR=$(dirname $(find . -name OWNERS | xargs grep -rl 'area/networking') | xargs) | |
for i in $NETWORKING_DIR; do pushd serving > /dev/null; git log --pretty=format:"%ad,%h,%an" --date=short -- $i; popd > /dev/null; done | sort -u | cut -f1,3 -d, > serving.raw.txt | |
# knative-sandbox/net* and knative/networking | |
for i in net*; do pushd $i > /dev/null ; git log --pretty=format:"%ad,%an" --date=short; popd > /dev/null ; done > repo-net.raw.txt | |
# summary | |
# TODO: Replace start date. | |
cat *.raw.txt | awk -F',' '$0 >= "2022-06-01"' | 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