Last active
August 29, 2015 14:22
-
-
Save janniklorenz/efcc8863f3b592c278bb to your computer and use it in GitHub Desktop.
Git pull in all subdirectories of the current directories.
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
for path in $(find . -maxdepth 1 -mindepth 1 -type d); do | |
git -C $path pull | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment