I have a branch A and master in a git repo.
In branch A I have done several additions, deletions. At some point, these changes were also merged in Master but we had to release master without these changes so we removed the file in master.
Now, when merging master into branch A, to get the last changes, Git obviously deletes the files since they have been deleted in master after the last changes.
What is the easiest way to keep branch A changes while merging back last Master changes?