Last active
September 3, 2015 04:39
-
-
Save sunitparekh/40fa83d0d3180bf56293 to your computer and use it in GitHub Desktop.
Shell script to check satus of git repository for multiple projects
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 | |
repos=( | |
"/c/projects/project-1" | |
"/c/projects/project-2" | |
"/c/projects/project-3" | |
) | |
echo "" | |
echo "Checking" ${#repos[@]} "repositories for status" | |
for repo in "${repos[@]}" | |
do | |
echo "" | |
echo "****** Checking status for" ${repo} "******" | |
cd "${repo}" | |
git status | |
echo "******************************************" | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment