Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save gld1982ltd/658b64eef0aaf66da7e4 to your computer and use it in GitHub Desktop.
Save gld1982ltd/658b64eef0aaf66da7e4 to your computer and use it in GitHub Desktop.
Clone all repos from a GitHub organization
user="gld1982ltd"
curl -s https://api.github.com/users/$user/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