Last active
October 2, 2017 05:39
-
-
Save tapsboy/28c12d49b966fcee30bb26f59533beb7 to your computer and use it in GitHub Desktop.
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 Status of all repos: | |
| find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git status)' ';' | |
| Git Config for all repos: | |
| find . -maxdepth 1 -type d -exec sh -c '(cd {} && cat .git/config)' ';' | |
| Git checkout branchname for all repos: | |
| find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git checkout branchname)' ';' | |
| Git list branches alpha for all repos: | |
| find . -maxdepth 1 -type d -exec sh -c '(cd {} && pwd && git branch)' ';' | |
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
| _ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment