Forked from caniszczyk/clone-all-twitter-github-repos.sh
Created
August 30, 2024 01:59
-
-
Save almgwary/49636a7b061a9e31f73db6df34ccd92a to your computer and use it in GitHub Desktop.
Clone all repos from a GitHub organization
This file contains hidden or 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/twitter/repos?per_page=200 | ruby -rubygems -e 'require "json"; JSON.load(STDIN.read).each { |repo| %x[git clone #{repo["ssh_url"]} ]}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment