Skip to content

Instantly share code, notes, and snippets.

@aclk
Last active August 7, 2021 08:21
Show Gist options
  • Save aclk/af75c7d417eaab8e4cd16e37c7c48968 to your computer and use it in GitHub Desktop.
Save aclk/af75c7d417eaab8e4cd16e37c7c48968 to your computer and use it in GitHub Desktop.
setup work flow
function Unj-GitCloneAllBy($User, $Proxy = $null) {
(curl -Proxy $Proxy "https://api.github.com/users/$User/repos?page=1&per_page=100").Content
| ConvertFrom-Json
| %{ $_.clone_url }
# workaround git printing to stderr by @wekempf aka William Kempf
# https://github.com/dahlbyk/posh-git/issues/109#issuecomment-21638678
| %{ & git clone $_ 2>&1 }
| % { $_.ToString() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment