I have two branches in git. Master and feature.
O---O (master)
\
O (feature)
I had a text file which contains Master
when it is at master branch head.
The same file contains feature
when it is at feature branch head.
I want to rebase the feature branch on to master. Since they both have conflicting changes there will be a rebase conflict (or merge conflict).
I want to know if there is a way to explicitly tell git, I want changes from feature branch in feature branch during the rebase.
This is what I tried:
We can clearly see that the feature branch text is being overwriten by the master branch text.
Thanks in advance :)