Clone all Devops repos

Powershell to clone all repos in Devops project

Source

(az repos list --query '[].{Name:name, Url:remoteUrl}' -o json | ConvertFrom-Json) | %{ git clone $_.Url }