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?
What
git
does makes sense, it sounds like you agree with that. I'd letgit
do what it does and keep the default merge commit, then re-add the missing file in an extra commit:I don't like modifying merge commits manually, rather let
git
do them, then fix afterwards. It causes less surprise.