Skip to content

Instantly share code, notes, and snippets.

@eckelon
Forked from douglas/update_git_repos.sh
Created May 8, 2019 10:11
Show Gist options
  • Save eckelon/2e9a2f6870f885ea49084e28eae58800 to your computer and use it in GitHub Desktop.
Save eckelon/2e9a2f6870f885ea49084e28eae58800 to your computer and use it in GitHub Desktop.
Update all git repositories under a base directory
#!/bin/bash
# store the current dir
CUR_DIR=$(pwd)
# Let the person running the script know what's going on.
printf "Checkout updated develop branch for all repos...\n\n"
# Find all git repositories and update it to the develop latest revision
for i in $(find . -name ".git" | cut -c 3-); do
# We have to go to the .git parent directory to call the pull command
cd "$i";
cd ..;
git stash &>/dev/null
git checkout develop &>/dev/null
git fetch &>/dev/null
git reset --hard origin/develop
echo " - ${i/\/\.git/}... OK";
# lets get back to the CUR_DIR
cd $CUR_DIR
done
printf "\nComplete!\n"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment