Skip to content

Instantly share code, notes, and snippets.

@saltybeagle
Created May 20, 2011 14:02
Show Gist options
  • Save saltybeagle/982941 to your computer and use it in GitHub Desktop.
Save saltybeagle/982941 to your computer and use it in GitHub Desktop.
Pull all git repositories in ~/workspace/
g=`find ~/workspace/ -name .git -maxdepth 2`
for repo in ${g[@]}
do
cd ${repo}
cd ..
echo `pwd`
git pull
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment