Created
April 14, 2016 12:34
-
-
Save suzuki/22f3be01ed6517aef17a7630e4cc4d29 to your computer and use it in GitHub Desktop.
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/sh | |
DIRS=`find ./ -type d -name .git -depth 3` | |
for D in $DIRS | |
do | |
pushd . > /dev/null | |
cd $D | |
echo `dirname $D` | |
git rev-parse --abbrev-ref HEAD | |
popd > /dev/null | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment