Skip to content

Instantly share code, notes, and snippets.

@keckelt
Created July 25, 2019 07:43
Show Gist options
  • Save keckelt/a4fc90f98129f6a413aee86a56d41d55 to your computer and use it in GitHub Desktop.
Save keckelt/a4fc90f98129f6a413aee86a56d41d55 to your computer and use it in GitHub Desktop.
Checkout all Caleydo repos
# src: https://www.jakeworth.com/clone-all-of-an-organizations-git-repos/
curl -s https://api.github.com/orgs/Caleydo/repos?per_page=200 | \
ruby -e 'require "json"; JSON.load(STDIN.read).each \
{ |repo| %x[git clone -b develop \"#{repo["ssh_url"]}\" ]}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment