Created
November 29, 2022 08:25
-
-
Save megadix/4d7f478e89831284daab310084fac514 to your computer and use it in GitHub Desktop.
Powershell git scripts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Get-ChildItem –Path "." -Attributes Directory | | |
| Foreach-Object { | |
| Write-Output "---------------------------------------------" | |
| Write-Output "Processing $_" | |
| Set-Location $_.FullName | |
| git fetch --all --tags --prune | |
| } | |
| Set-Location .. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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