I\'m writing a powershell script that needs to push code to several git repositories simultaneously?
Here\'s the script I have thus far:
param(
[
You can also use start-process to run each push in an additional command window.
start-process -FilePath "git" -ArgumentList ("push", $_, "master", "--fore", "-v")
How about start git "push $_ master --force -v"
Micah, you can use start-job to run it in background - http://technet.microsoft.com/en-us/library/dd347692.aspx