Skip to content

Instantly share code, notes, and snippets.

@arthurattwell
Forked from douglas/update_git_repos.sh
Last active May 10, 2020 12:42
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save arthurattwell/f0c5fe54537534ee1e601d67bb98652c to your computer and use it in GitHub Desktop.
Save arthurattwell/f0c5fe54537534ee1e601d67bb98652c to your computer and use it in GitHub Desktop.
Update all git repositories under a base directory
#!/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