File tree 1 file changed +11
-0
lines changed
1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ For clarity's sake all examples in this document use a customized bash prompt in
61
61
- [ I want to create a new remote branch from current local one] ( #i-want-to-create-a-new-remote-branch-from-current-local-one )
62
62
- [ 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 )
63
63
- [ 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 )
64
65
- [ Rebasing and Merging] ( #rebasing-and-merging )
65
66
- [ I want to undo rebase/merge] ( #i-want-to-undo-rebasemerge )
66
67
- [ 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
839
840
origin/HEAD set to master
840
841
```
841
842
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
+
842
853
## Rebasing and Merging
843
854
844
855
<a name =" undo-rebase " ></a >
You can’t perform that action at this time.
0 commit comments