1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-17 23:35:41 +02:00

git-checkout: add example to go to previous branch (#3319)

This commit is contained in:
lmazardo 2019-10-06 09:21:23 +02:00 committed by Agniva De Sarker
parent b751a31f72
commit 97bc3a92f9

View file

@ -15,6 +15,10 @@
`git checkout {{branch_name}}`
- Switch to the previously checked out branch:
`git checkout -`
- Switch to an existing remote branch:
`git checkout --track {{remote_name}}/{{branch_name}}`