Skip to content

Instantly share code, notes, and snippets.

@bernardbr
Created November 14, 2023 19:29
Show Gist options
  • Save bernardbr/7fa28059a172efa73e0191cb9604357f to your computer and use it in GitHub Desktop.
Save bernardbr/7fa28059a172efa73e0191cb9604357f to your computer and use it in GitHub Desktop.
Update all folders as a git repository
$rootFolder = "."
function GitPullSubfolders($folderPath) {
Get-ChildItem -Path $folderPath -Directory | ForEach-Object {
$subfolderPath = $_.FullName
$gitFolderPath = Join-Path -Path $subfolderPath -ChildPath ".git"
if (Test-Path $gitFolderPath) {
Write-Host "Executing 'git pull' in $subfolderPath"
Set-Location -Path $subfolderPath
& git pull
}
GitPullSubfolders -folderPath $subfolderPath
}
}
GitPullSubfolders -folderPath $rootFolder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment