#過去のbranchを漁りたいのに...
$ git branch
feature-a
feature-b
feature-c
feature-d
feature-e
feature-f
feature-g
feature-h
...
ブランチ切りすぎ、残しすぎ
いらないのを消したい...あれ?どのbranchが生きてるんだっけ?作業してたbranchどれだっけ?
とにかく直近作業してたブランチだけを参照したい場合
$ git branch --sort=authordate
mergeされてないものは無条件で -d
$ git branch --merged|egrep -v '\*|develop|master'|xargs git branch -d
なるべく早めにbranch整理しましょう。