ggoodale (owner)

Revisions

gist: 224618 Download_button fork
public
Public Clone URL: git://gist.github.com/224618.git
Embed All Files: show embed
Bash #
1
2
3
4
5
6
7
8
9
10
for repo in *
do
  [ ! -d $repo ] && continue
  [ ! -d $repo/.git ] && continue
cd $repo;
  echo $repo;
  git pull;
  cd - > /dev/null
done