mirror of
https://github.com/jbranchaud/til
synced 2026-01-03 23:28:02 +00:00
14 lines
432 B
Markdown
14 lines
432 B
Markdown
# Checkout Previous Branch
|
|
|
|
Git makes it easy to checkout the last branch you were on.
|
|
|
|
```bash
|
|
$ git checkout -
|
|
```
|
|
|
|
This is shorthand for `git checkout @{-1}` which is a way of referring to
|
|
the previous (or last) branch you were on. You can use this trick to easily
|
|
bounce back and forth between `master` and a feature branch.
|
|
|
|
[source](http://stackoverflow.com/questions/7206801/is-there-any-way-to-git-checkout-previous-branch)
|