Skip to content

Instantly share code, notes, and snippets.

@tracer8
Forked from michidk/multiclone.bat
Created December 6, 2020 10:16
Show Gist options
  • Save tracer8/78e73c397caf08abcdf66e065db4f491 to your computer and use it in GitHub Desktop.
Save tracer8/78e73c397caf08abcdf66e065db4f491 to your computer and use it in GitHub Desktop.
Clone multiple repos (listed in text file) at once
@echo off
for /F "tokens=*" %%i in (repos.txt) do call :DOSTUFF %%i
pause > nul
:DOSTUFF
echo "Cloning %~1"
git clone https://michidk@bitbucket.org/brokenvector/%~1.git
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment