I met a problem when I cherry-pick a commit on my branch. Below is what I did:
$ git cherry-pick 50658
$ git status
Error messages:
Not currently on any branch.
You are currently cherry-picking commit 5065872.
(fix conflicts and run "git cherry-pick --continue")
(use "git cherry-pick --abort" to cancel the cherry-pick operation)
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: drivers/media/dvb-core/dvb_frontend.c
But when I input git diff. It tells below :
diff --cc drivers/media/dvb-core/dvb_frontend.c
index 7023d5f,72fc718..0000000
--- a/drivers/media/dvb-core/dvb_frontend.c
+++ b/drivers/media/dvb-core/dvb_frontend.c
I didn't find any conflict massage, as <<<<<<HEAD
in dvb_frontend.c
files. Why it tells conflicts exiting ?