I have 2 branches - master
and develop
I have been doing some pull requests in my develop
branch where it contains 5 items, in whi
What this means is that GitHub would like to merge your PR branch into master
, but it can't, because there are conflicts. As you've discussed in the question comments, the best way to deal with this (usually) is to merge your master
branch into develop
on the command line. That will show you the conflicts and ask you to resolve them. Once you've completed and pushed that merge, the PR will be mergeable back into master
using the green button on GitHub.
You could simply merge your deploy
branch into master
(which I realize sounds a bit more sensible). In that case, you'd be bypassing the PR entirely. You'd have to close the PR "unmerged", and separately you'd manually push the merge commit to master
.
By doing it the first way,
master
; and