I think my problem is specific. We have following branches in our git development flow:
develop
- it's being deployed on test platform, all feature and bugs branches are being merged here and after QA accepts the solution, the feature or bug branch is being merged into
stable
branch, which is a base for a release package.
My problem is that I can't merge my accepted feature branch into stable, because JIRA shows merge conflicts on one file... I cannot merge develop
into my branch because I don't want to have develop in stable. The conflicting file has been changed in other bug/feature branch many days before. I tried to cherry pick this change into my branch, but without success...
What can I do?
@edited
Now I observed that even when I create a fresh branch from stable and change the file, I have merge conflicts when trying to merge with develop!