I'm looking for an easy way to resolve my current git conflict.
This it how it happened:
- local commits (5) created on my develop branch (without pushing them)
- feature branch created from my local develop branch
- feature branch development finished, commits have been pushed
- PULL request from feature branch to develop merged
- Now I checked out my local develop branch and when I tried to sync I saw that there are already incoming and outgoing commits too, now I realized that I forgot to push them earlier and guessed I'm having a trouble...
- (tried to sync but not surprisingly it has a lot of conflicts)
I hope it's understandable and someone could help me, please. Thank you!
If you have not made any new commits on your local
develop
branch since you have created thefeature
branch (feature
branch that was pushed, and then merged to the remoteorigin/develop
branch), you could simply:origin
develop
branch toorigin/develop
(I would save, for the above scenario or the one below, your local repository in a duplicate folder, just in case something foes wrong)
That would work since
origin/develop
does include your localdevelop
+feature
work, merged through the pull request toorigin/develop
.If you had done commits on develop since the creation of feature, you can rebase those new commits on top of
origin/develop