Git/checkout
Jump to navigation
Jump to search
About
The git checkout command allows you to switch branches. If you've got incomplete changes you want to set aside before switching branches, use git stash
.
Options
git checkout -b <name>
does the same thing as executing these two commands:
Links
Reference
- git-checkout - Switch branches or restore working tree files