Mark conflicting files as resolved in Git
After you've manually resolved a Git merge conflict, you have to mark the resulting file as "resolved" (notion from other DVCSs). Just do this to achieve this:
git add your_file_with_manually_resolved_conflicts.txt
Comments
Post a Comment