Files
30-seconds-of-code/snippets/switch-to-last-branch.md
Isabelle Viktoria Maciohsek 639f0da36a Add switch to last branch
2021-04-04 14:13:31 +03:00

278 B

title, tags
title tags
Return to previous branch branch,beginner

Switches back to the last branch.

  • Use git checkout - to switch back to the previous branch.
git checkout -
git checkout patch-1
git checkout master
git checkout - # Switches to `patch-1`