I have a master branch and a feature branch that has been extracted from master .
master receives commits entered into it from other developers, and I regularly merge master back into feature so that it does not lag behind new developments from other branches.
However, I still get the same conflicts in the same files every time I do git merge master , although I resolved the conflict before that and made the changes.
Any ideas on what could be causing this and how to prevent it?
Thanks!
source share