Skip to content

Instantly share code, notes, and snippets.

@djfm
Last active August 19, 2016 00:28
Show Gist options
  • Save djfm/185db29b4b3b8850d9df to your computer and use it in GitHub Desktop.
Save djfm/185db29b4b3b8850d9df to your computer and use it in GitHub Desktop.
Clone All Repositories From GitHub Organization
curl -s https://api.github.com/orgs/PrestaShop/repos | ruby -rjson -e 'JSON.load(STDIN.read).each {|repo| %x[git clone #{repo["ssh_url"]} --recursive]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment