最近checkoutしたbranchにcheckout


reflogを整形してpecoで一覧して選択してcheckout

selected=`git reflog | grep checkout: | awk '!a[$8]++ {print $8}' | grep -v master | head | peco`

if ! [ -f $selected ]; then
    git checkout $selected
fi