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")