Skip to content

Instantly share code, notes, and snippets.

@hdevalence
Last active April 26, 2021 19:57
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 hdevalence/d1b8a1b2fde68508c2daaa4578bb3f8b to your computer and use it in GitHub Desktop.
Save hdevalence/d1b8a1b2fde68508c2daaa4578bb3f8b to your computer and use it in GitHub Desktop.
clone repos from an organization into current directory
curl -s "https://api.github.com/orgs/THE_ORG_NAME/repos?per_page=200" | jq '.[].clone_url' | xargs -L1 git clone
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment