Git/checkout

from HTYP, the free directory anyone can edit if they can prove to me that they're not a spambot
< Git
Revision as of 16:26, 27 May 2018 by Woozle (talk | contribs) (git checkout -b)
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:
    • git branch <name> creates a new branch called "name", pointing at the current HEAD revision
    • git checkout <name> moves HEAD to point to the branch called "name"

Links

Reference

  • git-checkout - Switch branches or restore working tree files