你可以使用以下 PowerShell 脚本批量更新所有 git 仓库: “`powershell $repos = G…

你可以使用以下 PowerShell 脚本批量更新所有 git 仓库:

“`powershell
$repos = Get-ChildItem -Directory -Filter “.git” -Recurse | ForEach-Object { $_.Parent.FullName }

foreach ($repo in $repos) {
Write-Host “Updating $repo”
Set-Location $repo
git pull
}

Write-Host “All repositories updated”
“`

将以上代码保存为 `.ps1` 文件,然后在 PowerShell 中运行该脚本即可批量更新所有 git 仓库。请注意,这段代码会找出所有文件夹下的 `.git` 目录,因此请确保仓库目录结构正确。

0 条回复 A文章作者 M管理员
    暂无讨论,说说你的看法吧
个人中心
购物车
优惠劵
今日签到
有新私信 私信列表
搜索