同一个项目不同的功能在不同的仓库中,每次新人或者交接都要进行N多次 gitclone的操作

脚本

git.txt 中准备 仓库的名字,且 git.txt 跟 脚本在同一目录下 ps:利用循环进行git clone 就不需要每次手动的输入

  1. # clone_all.bat
  2. @echo off
  3. echo '批量clone,请注意操作机上需安装git且git有全局环境'
  4. echo start git clone
  5. pause
  6. for /f %%i in (git.txt) do git clone https://gitee.com/haoli_mall/%%i.git
  7. echo 'git clone 完成!'
  8. pause

image.png
image.png