Skip to content

Instantly share code, notes, and snippets.

@coderbyheart
Last active July 14, 2024 13:03
Show Gist options
  • Save coderbyheart/601c4208b36cfed214fcbeb1cedaa935 to your computer and use it in GitHub Desktop.
Save coderbyheart/601c4208b36cfed214fcbeb1cedaa935 to your computer and use it in GitHub Desktop.
Clone all repos of a GitHub organization
curl -s https://api.github.com/orgs/bifravst/repos\?per_page\=200 | jq '.[] | select( .archived == false).clone_url' -r | xargs -I@ git clone --depth 1 @
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment