I followed this partly cherry-picking a commit with git to cherry-pick changes on only certain files.
after the cherry-pick, some files had conflicts, i.e. the files have sections like :
<<<<<<<<<<<<
>>>>>>>>>>>>
normally with git merge, I use my beloved p4merge to resolve the conflicts, which is very intuitive and error-free.
but with cherry-pick, when i use git mergetool, it says nothing needs to be merged, though the file has <<<<<<
in it.
so I had to manually edit and resolve the conflicts.
so how could I let git know that the conflict exists?
thanks Yang