你可以使用以下 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` 目录,因此请确保仓库目录结构正确。