Skip to content

Instantly share code, notes, and snippets.

@lukeholder
Last active August 29, 2015 14:01
Show Gist options
  • Save lukeholder/f8a00e5dbb51eadb91a3 to your computer and use it in GitHub Desktop.
Save lukeholder/f8a00e5dbb51eadb91a3 to your computer and use it in GitHub Desktop.
How do download all cartslyst repos from the command line. no need to subscribe all the time
mkdir Cartalyst
cd Cartalyst
curl -s https://api.github.com/orgs/jenkinsci/repos | ruby -rjson -e '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