window下批量clone项目

公司目前大大小小有接近100个项目,须要所有clone下来,可怕。决定用bat批处理脚本解决。代码以下:html @echo off echo start git clone pause for /f %%i in (list.txt) do git clone https://gitee.com/%%i.git %%i echo 'git clone finish!' pause 而后再
相关文章
相关标签/搜索