2015-10-22 08:31:52 +01:00
|
|
|
# git checkout
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
> Checkout a branch or paths to the working tree.
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Create and switch to a new branch:
|
2014-03-09 12:20:13 +00:00
|
|
|
|
2016-09-21 16:35:46 +01:00
|
|
|
`git checkout -b {{branch_name}}`
|
2015-11-23 23:21:20 +00:00
|
|
|
|
2017-01-18 14:43:53 +00:00
|
|
|
- Switch to an existing local or remote branch:
|
2016-08-23 20:33:31 +01:00
|
|
|
|
|
|
|
`git checkout {{branch_name}}`
|
|
|
|
|
2016-01-07 17:31:27 +00:00
|
|
|
- Undo unstaged local modification:
|
2015-11-23 23:21:20 +00:00
|
|
|
|
2016-01-07 15:51:03 +00:00
|
|
|
`git checkout .`
|
2016-08-23 20:33:31 +01:00
|
|
|
|
|
|
|
- Replace a file in the current working directory with the version of it committed in a given branch:
|
|
|
|
|
|
|
|
`git checkout {{branch_name}} -- {{file_name}}`
|