Last active
October 19, 2017 15:17
-
-
Save fartbagxp/cda7cc488683ad1a83177859c4be6600 to your computer and use it in GitHub Desktop.
Git pull local 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
#!/bin/bash | |
for i in */.git; do ( echo $i; cd $i/..; git pull; ); done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment