powershell脚本批量拉取 git仓库文件

# 定义基础URL和数据库列表  
$BASE_URL = "http://8.8.11.99:8999/yaya/"  
$DATABASES = "common-service", "bi-system", "erp", "gateway", "pdm", "plm", "public-service", "scm", "ums", "wms"  
  
# 遍历数据库列表  
foreach ($prj in $DATABASES) {  
    # 构建仓库URL和本地路径  
    $RepoURL = $BASE_URL + $prj + ".git"  
    $LocalRepoPath = ".\$prj"  
    $Dbranch = "test"  
  
    # 检查本地目录是否存在,如果不存在则克隆仓库  
    if (!(Test-Path -Path $LocalRepoPath)) {  
        Write-Host "Cloning $RepoURL to $LocalRepoPath ..."  
        git clone $RepoURL $LocalRepoPath  
        if ($LASTEXITCODE -ne 0) {  
            Write-Host "Failed to clone $RepoURL"  
        } else {  
            # 切换到特定分支并拉取更新(如果需要)  
            cd $LocalRepoPath  
            git checkout $Dbranch  
            git pull  
        }  
        cd .. # 返回到上级目录  
    } else {  
        Write-Host "Repository $RepoURL already exists locally at $LocalRepoPath"  
    }  
}  
  
# 暂停以查看输出(如果需要)  
# Read-Host -Prompt "Press Enter to continue..."  
  
# 脚本结束,不需要显式退出,因为PowerShell会在执行完毕后自动退出
相关推荐
夏沫的梦10 小时前
Git命令使用与原理详解
git·gitlab·github
夏天的味道٥12 小时前
Linux 安装 Git 服务器
linux·服务器·git
东方神剑202314 小时前
【Git】git从暂存区中移除文件
git
誓约酱17 小时前
(动画)Qt控件 QLCDNumer
开发语言·c++·git·qt·编辑器
芜湖_17 小时前
【软件入门】Git快速入门
git
hillstream318 小时前
windows11下git与 openssl要注意的问题
git
viviScript19 小时前
从零开始-VitePress 构建个人博客上传GitHub自动构建访问
git
△曉風殘月〆19 小时前
git如何将当前的修改提交到其它分支
git
Smile丶凉轩1 天前
微服务即时通讯系统的实现(服务端)----(1)
c++·git·微服务·github