Can you git clone all the warehouses at once

https://github.com/xxxx 

under this user, there are several warehouses, test1 test2 project mirror, etc.

git clone https://github.com/xxxx/test1 can pull the contents of test1
if I need to pull all the contents under the test1 test2 project mirror at once, can I do it?

Mar.18,2021

Hello, we have encountered the same problem recently. Our solution is to get all the warehouse names of the user through the web page, save them to a file, one warehouse name per line, then get the warehouse prefix, add the git clone command before the prefix, splice the connection to each line by regular, and replace the newline character with & &, which is equivalent to multiple git clone commands connected with & &, and then execute it directly in the terminal.

Menu