Skip to content

Instantly share code, notes, and snippets.

@megadix
Created November 29, 2022 08:25
Show Gist options
  • Select an option

  • Save megadix/4d7f478e89831284daab310084fac514 to your computer and use it in GitHub Desktop.

Select an option

Save megadix/4d7f478e89831284daab310084fac514 to your computer and use it in GitHub Desktop.
Powershell git scripts
Get-ChildItem –Path "." -Attributes Directory |
Foreach-Object {
Write-Output "---------------------------------------------"
Write-Output "Processing $_"
Set-Location $_.FullName
git fetch --all --tags --prune
}
Set-Location ..
Get-ChildItem –Path "." -Attributes Directory |
Foreach-Object {
Write-Output "---------------------------------------------"
Write-Output "Processing $_"
Set-Location $_.FullName
git pull
}
Set-Location ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment