Skip to content

Instantly share code, notes, and snippets.

@judy2k
Created March 13, 2015 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save judy2k/40736d5b9755817cc7af to your computer and use it in GitHub Desktop.
Save judy2k/40736d5b9755817cc7af to your computer and use it in GitHub Desktop.
List git branches
for f in `ls`; do
if [ -d $f/.git ]; then
fb=$(git --git-dir=$f/.git branch --no-color 2> /dev/null | sed -e '/^[^*]/d' -e "s/* //")
echo $f: $fb
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment