Skip to content

Instantly share code, notes, and snippets.

@roccomuso
Last active October 29, 2018 23:51
Show Gist options
  • Save roccomuso/0a719d9f2e32147a80b6b3e64aa86ad2 to your computer and use it in GitHub Desktop.
Save roccomuso/0a719d9f2e32147a80b6b3e64aa86ad2 to your computer and use it in GitHub Desktop.
Update all git repository under a given directory, maxdepth 1.
#!/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