I tried to go with git rebase
being on some feature-branch
, applying master
branch on it (well rebassing ON master), wich was way ahead that future branch. (master has more new commits than feature branch)
So,
git branch : feature-branch
git rebase master
[resolving conflicts]
git rebase --continue
[resolving conflicts]
git rebase --continue
git push -f origin feature-branch
Then I created a PR (Pull Request) to upstream
and in the changes list (still) see conflicts between upstream
and origin
!
Why is that?
Is there some setting, like git-config i should tune?
--
For smaller bunch of code I never had that issue.