The problem we're facing is simple, I'm just not sure how to properly handle it. We have a branch that re-organized files and we're ready to merge master into that branch. The problem is that by now master has changed quite a bit.
Ex:
Master:
- file1
- file2
- file3
Our branch:
- directory1/file1
- directort2/file2
- directroy3/file3
How do I tell git the new location of the files so that the auto-merge can work properly?
Thanks.