I had some commits in one branch A
and did all the development there.
Then there was a need to switch to another branch B
. It was the same branch as mine but it did not have one - last commit that was in branch A
.
So I decided to perform cherry-pick
for that commit from branch A
.
I had some conflicts and I resolved it. However in my log I have
Author:
Date:
Commit message from branch A
Conflicts:
file.txt
How to get rid of this information about conflicts? Or is it possible at all?