We have two branches in GIT. Master (M1) and Release (R1).
M1 is periodically merged into R1.
Someone accidentally merged R1 into M1. The merge was reverted back.
Check-ins continued in M1 and also in R1.
Now when I try to merge M1 into R1 , GIT is asking to delete 140 files from R1.
I don't want those files to be deleted.
How can I merge M1 into R1 without deleting the files in R1?
I can use GIT status, save those 140 files somewhere, let the merge delete those 140 files, copy the saved files again and commit.
But I am hoping there may be a simpler way to do it.