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 }