mirror of
https://github.com/k88hudson/git-flight-rules.git
synced 2025-03-10 20:58:39 -03:00
Merge pull request #21 from jwhear/master
Use `branch` instead of `checkout -b`
This commit is contained in:
commit
fc2ec9c64a
12
README.md
12
README.md
@ -217,12 +217,10 @@ If you need to change all of history, see the man page for 'git filter-branch'
|
|||||||
## I committed to master instead of a new branch
|
## I committed to master instead of a new branch
|
||||||
|
|
||||||
|
|
||||||
Check out a new branch, then return to your master branch
|
Create the new branch while remaining on master:
|
||||||
|
|
||||||
```
|
```
|
||||||
(master)$ git checkout -b new-branch
|
(master)$ git branch new-branch
|
||||||
(new-branch)$ git checkout master
|
|
||||||
(master)$
|
|
||||||
```
|
```
|
||||||
|
|
||||||
Find out what the commit hash you want to set your master branch to (`git log` should do the trick). Then reset to that hash.
|
Find out what the commit hash you want to set your master branch to (`git log` should do the trick). Then reset to that hash.
|
||||||
@ -234,6 +232,12 @@ For example, if the hash of the commit that your master branch is supposed to be
|
|||||||
HEAD is now at a13b85e
|
HEAD is now at a13b85e
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Checkout the new branch to continue working:
|
||||||
|
|
||||||
|
```
|
||||||
|
(master)$ git checkout new-branch
|
||||||
|
```
|
||||||
|
|
||||||
<a name="cherry-pick"></a>
|
<a name="cherry-pick"></a>
|
||||||
## I made several commits on a single branch that should be on different branches
|
## I made several commits on a single branch that should be on different branches
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user