Skip to content

Instantly share code, notes, and snippets.

@AndrewSav
Last active February 10, 2017 10:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save AndrewSav/5890d683e65d738ae1334bfac4d356f6 to your computer and use it in GitHub Desktop.
Save AndrewSav/5890d683e65d738ae1334bfac4d356f6 to your computer and use it in GitHub Desktop.
Clone all github repos in an organisation
(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