Skip to content

Instantly share code, notes, and snippets.

@nak3
Last active August 22, 2022 08:52
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nak3/36d7a871e5b14370fdfdde284481f76a to your computer and use it in GitHub Desktop.
Save nak3/36d7a871e5b14370fdfdde284481f76a to your computer and use it in GitHub Desktop.
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