git fetch over all subfolders with PowerShell
Want to fetch or pull all subfolder of your repos directory with a single line of PowerShell?
gci | foreach { write-host $_.fullname; push-location $_; & git fetch }
Want to fetch or pull all subfolder of your repos directory with a single line of PowerShell?
gci | foreach { write-host $_.fullname; push-location $_; & git fetch }