Reputation: 421
I have two branches, Master
which reflects Production
, and a current release branch (let's call it Sprint
) serving as base branch for all developers for the ongoing release. On both the branches, I have permissions setup that no changes will be pushed directly without a Pull Request
.
Now, I need to merge Master
into Sprint
but when I do that, I've merge conflicts.
How can I resolve those conflicts since I can't push anything directly to Sprint
?
Upvotes: 2
Views: 815
Reputation: 51780
You can :
On your local repo :
workbranch
from masterSprint
into workbranch
(git merge Sprint
)workbranch
workbranch
to your remoteOn bitbucket :
workbranch
into master
Upvotes: 3