Skip to content

Instantly share code, notes, and snippets.

@ggoodale
Forked from gilesbowkett/gist:224612
Created November 2, 2009 23:29
Show Gist options
  • Save ggoodale/224618 to your computer and use it in GitHub Desktop.
Save ggoodale/224618 to your computer and use it in GitHub Desktop.
for repo in *
do
[ ! -d $repo ] && continue
[ ! -d $repo/.git ] && continue
cd $repo;
echo $repo;
git pull;
cd - > /dev/null
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment