I have a master branch and a feature branch.
Feature branch branch has two files deleted
file1
file2
I wanna merge feature branch into master but I want to keep file1 and file2 , I don't want them to be deleted.
if I do cherry-pick on feature branch, I get
git cherry-pick XXX
error: Commit XXX is a merge but no -m option was given.
So basically I want merge tool to popup so I can do a selective merge for the files. But there is no conflicts so it is not poping up.
also this questions is similar but difficult to follow, How do you merge selective files with git-merge?
is there a simpler approach or a visual representation I can pick what to merge?