I have a Git alias that expands to:
git log --graph --oneline --all --decorate
According to man git log
there are a couple of susp
Note that Andrew's answer wouldn't work for hiding StGit1.) branches
(from StGit version 0.15) which otherwise litter the output making it unusable.
Currently I use the following solution:
$ git log --graph --oneline --decorate \
$(git for-each-ref --format="%(refname)" refs/heads/ refs/remotes/ |
grep -v "\.stgit$")
1.) StGit ("Stacked Git") provides Quilt/mq--like functionality to Git (i.e. pushing/popping patches to/from a stack).