Created
June 10, 2016 06:00
-
-
Save thirdy/9bf9a8122a81c061d1498b0e26570a70 to your computer and use it in GitHub Desktop.
Bash script for running multiple git status on multiple directories
This file contains 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
#!/bin/bash | |
for REPO in */; do (cd "$REPO"; echo "status ----------------------------------------------------------------------------> " ${REPO}; git status); done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment