Skip to content

Instantly share code, notes, and snippets.

@jonnybest
Created August 30, 2011 06:41
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save jonnybest/1180336 to your computer and use it in GitHub Desktop.
Save jonnybest/1180336 to your computer and use it in GitHub Desktop.
Powershell update script for multiple git repositories
$git = $env:programfiles+"\Git\cmd\git.cmd";
if (!$git) {
Write-Host "Something went wrong.
Please enter the path to git.cmd or git.exe:";
$git = Read-Host;
Set-Variable -Name git -Value $git;
}
ls -name -Exclude *.* | foreach {cd .\$_ ; .$git pull origin master ; cd ..}
Write-Host "Done.";
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment