Skip to content

Commit e0513d8

Browse files
NRKirbyRichardLitt
authored andcommitted
I made changes to the wrong branch (k88hudson#202)
* I made changes to the wrong branch * Missed from last commit * Fixing links * Making changes * Another change * Moving section
1 parent be480c4 commit e0513d8

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ For clarity's sake all examples in this document use a customized bash prompt in
6161
- [I want to create a new remote branch from current local one](#i-want-to-create-a-new-remote-branch-from-current-local-one)
6262
- [I want to set a remote branch as the upstream for a local branch](#i-want-to-set-a-remote-branch-as-the-upstream-for-a-local-branch)
6363
- [I want to set my HEAD to track the default remote branch](#i-want-to-set-my-head-to-track-the-default-remote-branch)
64+
- [I made changes on the wrong branch](#i-made-changes-on-the-wrong-branch)
6465
- [Rebasing and Merging](#rebasing-and-merging)
6566
- [I want to undo rebase/merge](#i-want-to-undo-rebasemerge)
6667
- [I rebased, but I don't want to force push](#i-rebased-but-i-dont-want-to-force-push)
@@ -839,6 +840,16 @@ $ git remote set-head origin --auto
839840
origin/HEAD set to master
840841
```
841842

843+
### I made changes on the wrong branch
844+
845+
You've made uncommitted changes and realise you're on the wrong branch. Stash changes and apply them to the branch you want:
846+
847+
```sh
848+
(wrong_branch)$ git stash
849+
(wrong_branch)$ git checkout <correct_branch>
850+
(correct_branch)$ git stash apply
851+
```
852+
842853
## Rebasing and Merging
843854

844855
<a name="undo-rebase"></a>

0 commit comments

Comments
 (0)