Created
July 7, 2015 08:59
-
-
Save timvw/7f8c3a27995c9d69fc5e to your computer and use it in GitHub Desktop.
Git fetch on windows
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 | |
| function gitfetch { | |
| cd $1 | |
| git fetch | |
| } | |
| for repo in $(find /c/src -type d -maxdepth 1 -name icteam-\*); do gitfetch $repo; done | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment