-
-
Save tracer8/78e73c397caf08abcdf66e065db4f491 to your computer and use it in GitHub Desktop.
Clone multiple repos (listed in text file) at once
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
for /F "tokens=*" %%i in (repos.txt) do call :DOSTUFF %%i | |
pause > nul | |
:DOSTUFF | |
echo "Cloning %~1" | |
git clone https://[email protected]/brokenvector/%~1.git |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment