Last active
July 14, 2024 13:03
-
-
Save coderbyheart/601c4208b36cfed214fcbeb1cedaa935 to your computer and use it in GitHub Desktop.
Clone all repos of a GitHub organization
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
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