Skip to content

Instantly share code, notes, and snippets.

@DavidDeSloovere
Created September 29, 2020 16:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DavidDeSloovere/b8e2b72ca4eeaa2ba0aed5aa36b7b0bb to your computer and use it in GitHub Desktop.
Save DavidDeSloovere/b8e2b72ca4eeaa2ba0aed5aa36b7b0bb to your computer and use it in GitHub Desktop.
git fetch over all subfolders with PowerShell
gci | foreach { write-host $_.fullname; push-location $_; & git fetch }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment