Skip to content

Instantly share code, notes, and snippets.

@dan
Created June 16, 2009 13:06

Revisions

  1. dan created this gist Jun 16, 2009.
    3 changes: 3 additions & 0 deletions update_git_projects.sh
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    #!/bin/sh
    cd ~/work
    for dir in `find . -type d -maxdepth 1 -mindepth 1`; do cd $dir; git pull origin master; cd -; done