Last active
February 10, 2017 10:41
-
-
Save AndrewSav/5890d683e65d738ae1334bfac4d356f6 to your computer and use it in GitHub Desktop.
Clone all github repos in an organisation
This file contains 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
(Invoke-WebRequest "https://api.github.com/orgs/twitter/repos?per_page=200").Content | ConvertFrom-Json | %{ $_.clone_url } | %{ git clone $_} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment