-
-
Save arthurattwell/f0c5fe54537534ee1e601d67bb98652c to your computer and use it in GitHub Desktop.
Update all git repositories under a base directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# store the repos dir | |
REPOS_DIR=/var/services/homes/admin/EBW/Dropbox/git-repos | |
# Go into the repos folder | |
cd $REPOS_DIR | |
# 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 | |
echo ""; | |
echo "$i"; | |
# We have to go to the .git parent directory to call the pull command | |
cd "$i"; | |
cd ..; | |
# finally pull | |
# git checkout master # optional | |
# git reset --hard origin/master; # optional | |
git pull; | |
# lets get back to the REPOS_DIR | |
cd $REPOS_DIR | |
done | |
echo "Complete!" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment