Say I run git pull
and there is a conflict that git cannot automatically merge.
After I manually merge the changes, and run git commit
, should I leave the Conflicts:
section that git generates in the commit (as a record that those files were manually merged), or removed it (as the conflict is not being committed)?
I'm never sure what best practice is - is the warning there to make sure you fix the conflicts, or to be actually logged in the commit message?