Last active
August 21, 2021 22:29
-
-
Save gustavonobreza/c436b69c9e2c89af89150a5ce6b5c9d5 to your computer and use it in GitHub Desktop.
Git pull in all folders in PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Enter in folder with many cloned repositories, then run: | |
| Get-ChildItem -Path . -Directory | ForEach-Object { cd $_.Name; git pull; cd ..} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment