I'm new to Git and I'm trying to find a quicker way to resolve merge conflicts. Say I tried to merge a branch to master and I get merge conflicts for some of the files.
Changes to be committed:
modified: ...
Unmerged paths:
(use "git add <file>..." to mark resolution)
both modified: ...
Git goes into each of the both modified files and adds conflict-resolution markers right? (<<<<<<< this stuff). Normally I would go into the files and manually change them but in this case they are all bin files and not too relevant to my program working. Is there a way I can just stage all the modified
files and specify that I want all the unmodified
files to remain the way they were in the master
before the merge. (basically disregard the changes from the branch to those files). Thanks