批处理-批量拉取git代码

批处理-批量拉取git代码,第1张

批处理-批量拉取git代码

简介:

        公司项目采取微服务方式,导致开发时要拉取多个服务代码,一个一个的拉取太麻烦了,

        于是,有了 “光”  ^_^

原理:

        将拉取地址写在一个文本里,利用批处理挨个读取,进行clone

需要文件两个,如图:

  abc.txt(里面放需要拉取的地址)

http://gitee.**zuul.git
http://gitee.**security.git
http://gitee.**commons.git
http://gitee.**parent.git

pull_All_gitlabCode.bat(循环读取abc.txt,进行clone,此文件不需要更改)

::for loop test
@echo off
for /f %%c in (abc.txt) do git clone %%c
pause

以上文件都准备好,双击pull_All_gitlabCode.bat脚本,等待完成即可

分享是一种美德^_^

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5637069.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存