I have two branches feature and master. I haven't worked on the feature branch in several months and the directory structure of the master branch has changed quite a bit.
I am trying to merge the master branch into my feature branch. Since there are many conflicts, renames and modifications that have occurred I am trying to incrementally perform the merge.
Is there a way I can kick off this process by just merging the renamed files (with 100% match) to begin with?
Ideally something like
git merge --diff-filter=R -M100% master
Since merge has no --diff-filter=R or -M commands I'm wondering if there is another way to do this?