Last active
October 29, 2018 23:51
-
-
Save roccomuso/0a719d9f2e32147a80b6b3e64aa86ad2 to your computer and use it in GitHub Desktop.
Update all git repository under a given directory, maxdepth 1.
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 current dir | |
CUR_DIR=$(pwd) | |
# Let the person running the script know what's going on. | |
echo -e "\n[Pulling in latest changes for all repositories...]" | |
# Find all git repositories and update it to the master latest revision | |
for i in $(find ./* -maxdepth 1 -name ".git" | cut -c 3-); do | |
echo ""; | |
echo -e "Pulling: $i \n"; | |
# We have to go to the .git parent directory to call the pull command | |
cd "$i"; | |
cd ..; | |
# finally pull | |
git pull; | |
# lets get back to the CUR_DIR | |
cd $CUR_DIR | |
done | |
echo -e "\nComplete!\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment