Skip to content

Instantly share code, notes, and snippets.

@sbellver
Created December 10, 2014 12:04
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 sbellver/dfb93475c79c4bd90b03 to your computer and use it in GitHub Desktop.
Save sbellver/dfb93475c79c4bd90b03 to your computer and use it in GitHub Desktop.
Check Git Status from all the repos in list
# It's part from my bash_profile
function gitstatus {
REPOS=( /route/repo /route/repo2 /route/repo3)
for R in "${REPOS[@]}"; do
echo "Comprobando repo $R."
pushd "$R" >/dev/null && {
git status
popd >/dev/null
}
done
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment