0

Possible Duplicate:
How to keep SVN from updating a directory already in repository

everybody!

I need your help! I svn up'ped project on server and have this structure:

$ ls -a
.  ..  api  common  srv  static  .svn  web

How to prevent srv folder from svn updates?

Thanks.

Community
  • 1
  • 1
andser
  • 555
  • 2
  • 6
  • 13

1 Answers1

1

First remove srv folder. Then update it with --depth=empty option. After this, srv folder will always be empty on every svn up of whole project.

svn up --depth=empty srv
ks1322
  • 33,961
  • 14
  • 109
  • 164