最近使ったgit branch

--sort=-committerdate を使うと良い。

$ git branch --sort=-committerdate

これをベースに gitconfig とかで branch のスイッチを peco と組み合わせて簡単にできる alias を登録しておくと便利。

# .gitconfig
swb = !git branch --sort=-committerdate | tr -d '* ' | peco | xargs git switch

参考