Hi All We like to ignore a set of jar files under our working copy root directory:
working copy root dir: /scratch/testMerge working copy jars dir: /scratch/testMerge/build/jars We tried to perform merging from a trunk to our working copy branch and it failed because one of the jar inside /scratch/test/build/jars is causing a conflict. (eg /scratch/testMerge/build/jars/a.jar) We like to use svn:ignore to ignore the jar files so that the conflict would go away in the next merge. What's the correct syntax to svn:ignore using it at the root directory. We have /scratch/testIgnorePropSetList.txt containing the line /scratch/testMerge/build/jars/*.jar We tried svn propset svn:ignore -F /scratch/testIgnorePropSetList.txt /scratch/testMerge svn propget svn:ignore /scratch/testMerge /scratch/testMerge/build/jars/*.jar But conflict still shows for a.jar when merging from trunk to working copy branch. --- Merging r555 into '/scratch/testMerge': C /scratch/build/artifacts/jars/a.jar How do we set it right ? Can svn:ignore be used with svn merge or is svn:ignore only used for svn checkout as a typical use case for svn:ignore ? Thank you Sincerely