git checkout -
で切り替え前のブランチに戻るみたい。
$ git checkout AAA
Switched to branch 'AAA'
$ git checkout BBB
Switched to branch 'BBB'
$ git checkout -
Switched to branch 'AAA'
ディレクトリ移動もcd -
で直前の場所に戻れるけど、同じ感じ?
ドキュメントにも書いてあった。
<branch>
…
As a special case, the
"@{-N}"
syntax for the N-th last branch/commit checks out branches (instead of detaching). You may also specify-
which is synonymous with"@{-1}"
.