Skip to content

Instantly share code, notes, and snippets.

@veggiemonk
Last active November 16, 2021 13:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save veggiemonk/576395a086b5f381e2621858bd523392 to your computer and use it in GitHub Desktop.
Save veggiemonk/576395a086b5f381e2621858bd523392 to your computer and use it in GitHub Desktop.
download all repos from github org
curl \
-H "Accept: application/vnd.github.v3+json" \
https://api.github.com/orgs/flyteorg/repos > repos.json
cat repos.json | jq '.[].git_url' | xargs -I REPO git clone REPO
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment