Skip to content

Instantly share code, notes, and snippets.

@dustinmm80
Created August 22, 2013 02:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dustinmm80/6302612 to your computer and use it in GitHub Desktop.
Save dustinmm80/6302612 to your computer and use it in GitHub Desktop.
Update all git repos in a directory, running git pull --rebase origin master on them all.
#!/bin/bash
# store the current dir
CUR_DIR=$(pwd)
# Let the person running the script know what's going on.
echo "--- Pulling in latest changes for all repositories... ---"
# Find all git repositories and update it to the master latest revision
for i in $(find . -name ".git" | cut -c 3-); do
reponame=`echo "$i" | cut -d'.' -f1 | cut -d'/' -f1`
echo "";
echo "--- " $reponame " ---";
# We have to go to the .git parent directory to call the pull command
cd "$i";
cd ..;
# finally pull
git pull --rebase origin master;
# lets get back to the CUR_DIR
cd $CUR_DIR
done
echo "--- Complete! ---\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment