Created
September 21, 2017 20:59
-
-
Save coryk135/cce798bfad136ef34802f1ee42ee1abd to your computer and use it in GitHub Desktop.
git-recursive.sh
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
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