When I use the merge command, the conflicting lines will be marked and I can go and choose the master or merged version by editing the file in editor and then 'git add '.
What I want is to merge and then have a comment (similar to the comment I get when two files conflict), like this:
<<<<<<< HEAD
The old line in my old file in master branch
=======
The new line in my merged branch
>>>>>>>
I want the above like comment even if there is no conflict. It helps me to manually start editing and decide what to be merged and what to be discarded.
Basically I need to have control over merge line by line after I merged the branch.