1
0
mirror of https://github.com/k88hudson/git-flight-rules.git synced 2025-03-10 12:48:43 -03:00

Merged two answers

This commit is contained in:
Richard Littauer 2015-07-03 16:20:02 -04:00
parent 875c49d0d1
commit cdef6a1274

View File

@ -457,6 +457,10 @@ One way of reseting to match origin (to have the same as what is on the remote)
(master)$ git reset --hard origin/bug24
```
<a href="discard-local-uncommited-changes"></a>
## I want to discard my local, uncommitted changes
If you want to only reset to some commit between origin and your local, you can do this:
```sh
@ -466,13 +470,6 @@ If you want to only reset to some commit between origin and your local, you can
(bug24)$ git reset --hard HEAD^^
# four commits
(bug24)$ git reset --hard HEAD~4
```
<a href="discard-local-uncommited-changes"></a>
## I want to discard my local, uncommitted changes
```sh
(master)$ git reset --hard
# or
(master)$ git checkout -f
```