Created
July 25, 2019 07:43
-
-
Save keckelt/a4fc90f98129f6a413aee86a56d41d55 to your computer and use it in GitHub Desktop.
Checkout all Caleydo repos
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
# 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