Does anyone know how to avoid merging certain files in a branch merge? For eg., if i am merging stuff from say mybranch to trunk but if i DONT want to try merging certain files, is there a way to set something to ignore looking at these files?
The files i need ignore may or may not share file extensions.This scenario is important in stiautions where i want to handle certain files by hand, sicne I am sure they will conflict. The conflict will prevent the merge from proceeding on the remaining files - they are large in number and i'd like to get them all merged automatically while i deal with the conflicting one's by hand.
Thanks in advance!
( I did look at other related queries here in SO but didnt find one that suits the situation i have at hand)
EDIT: Is there is a way to avoid certain files from being looked into - rather than have them sit in my merge workspace in a conflicted state post merge - and thereby preventing recursive commits on the other files.