1

i have tried to exclude in svn property and global-ignore list but all failed, is there any way to do this in coding via c#?

Tunaki
  • 132,869
  • 46
  • 340
  • 423
Iori
  • 19
  • 3

1 Answers1

-1

Just specified which files should be committed, and use SvnDepth.Empty in your SvnCommitArgs. Excluding, and ignore lists are just for ignoring new files (mostly to allow you to svn add * on the command line, without adding files that shouldn't be in svn)

Sander Rijken
  • 21,376
  • 3
  • 61
  • 85