- Download the jq binary and add it to your path.
- Access the following URL and save the returned JSON in a file called
repositories.json
.
- After adding the
jq.exe
binary to your path run the command:
jq.exe .[].ssh_url repositories.json > repository_urls.txt
- Iterate all the lines in this file with bash command
FOR /F %k in (repository_urls.txt) DO git clone %k
.