Skip to content

Instantly share code, notes, and snippets.

@YOU54F
Created March 29, 2022 15:31
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 YOU54F/bd5dadc7ada0c2635b3787305e87974f to your computer and use it in GitHub Desktop.
Save YOU54F/bd5dadc7ada0c2635b3787305e87974f to your computer and use it in GitHub Desktop.
Update all them git repos whether they are on main or master. Gotta sync em 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
echo "";
echo "["$i"]";
# We have to go to the .git parent directory to call the pull command
cd "$i";
cd ..;
# finally pull
git pull origin master;
if git pull origin master; then
echo "pulled origin master for $i"
else
git pull origin main;
echo "pulled origin main for $i"
fi
# lets get back to the CUR_DIR
cd $CUR_DIR
done
echo "[Complete!]"
@YOU54F
Copy link
Author

YOU54F commented Mar 29, 2022

tweaked ever so slightly from https://gist.github.com/douglas/1287372

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment