Skip to content

Instantly share code, notes, and snippets.

@timvw
Created July 7, 2015 08:59
Show Gist options
  • Select an option

  • Save timvw/7f8c3a27995c9d69fc5e to your computer and use it in GitHub Desktop.

Select an option

Save timvw/7f8c3a27995c9d69fc5e to your computer and use it in GitHub Desktop.
Git fetch on windows
#!/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