How to ignore folder during subversion merge
问题 I have a whole bunch of changes that I need to be merged in to my branch but I want to ignore a specific folder during the merge. Is it possible to do this using Subversion? If so then how can I do it? EDIT: The folder that I want to ignore is in the repository but I don't changes to be made to this folder during the merge 回答1: You could do the merge as normal, then do a recursive revert ( svn revert -R somefolder ) on the folder where you don't want any changes before committing. Keep in