gitのversion 2.19でbranchのsortオプションに新しくauthordate
が追加された
これを使えばgit branchコマンドの結果がauthordate順に並ぶようになる。
いろんなbranchを行き来していてどのbranchを作業していたか忘れがちなので
これを使えば前に作業していたbranchが見つけやすくなる
git branch --sort=authordate #古い順
git branch --sort=-authordate #新しい順
defaultでsort順を変えたい時はgit configで設定しておくと便利
git config --global branch.sort -authordate
参考