Skip to content

Instantly share code, notes, and snippets.

@coryk135
Created September 21, 2017 20:59
Show Gist options
  • Save coryk135/cce798bfad136ef34802f1ee42ee1abd to your computer and use it in GitHub Desktop.
Save coryk135/cce798bfad136ef34802f1ee42ee1abd to your computer and use it in GitHub Desktop.
git-recursive.sh
git-recursive () {
find . -name .git -type d -execdir printf "\033[0;34m" \; -execdir pwd \; -execdir printf "\033[0m" \; -execdir git "$@" \; -execdir echo "" \;
}
alias grc="git-recursive"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment