我是靠谱客的博主 俊逸哈密瓜,最近开发中收集的这篇文章主要介绍windows从gitlab拉取代码,提交到svn的bat脚本,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

 有运维需求,将gitlab代码仓库的代码检出到svn用于自动构建,本地电脑为windows环境,脚本:

git clone ssh://git@ip:10022/bimplatform/bimconstruction.git
git clone ssh://git@ip:10022/bimplatform/largescreen.git
git clone ssh://git@ip:10022/bimplatform/mobile.git
git clone ssh://git@ip:10022/bimplatform/web.git
rd /s /q .bimconstruction.git
rd /s /q .largescreen.git
rd /s /q .mobile.git
rd /s /q .web.git
svn co svn://ip:13690/spring --username username --password password --no-auth-cache
xcopy .bimconstruction .springbimconstruction /e /y /h /r /q
xcopy .largescreen .springlargescreen /e /y /h /r /q
xcopy .mobile .springmobile /e /y /h /r /q
xcopy .web .springweb /e /y /h /r /q
cd spring
svn add . --no-ignore --force
svn commit -m "git to svn auto" -q
cd ../
::rd /s /q .bimconstruction
::rd /s /q .largescreen
::rd /s /q .mobile
::rd /s /q .web
::rd /s /q .spring
pause

最后

以上就是俊逸哈密瓜为你收集整理的windows从gitlab拉取代码,提交到svn的bat脚本的全部内容,希望文章能够帮你解决windows从gitlab拉取代码,提交到svn的bat脚本所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(40)

评论列表共有 0 条评论

立即
投稿
返回
顶部