3

Possible Duplicate:
How to ignore a directory with SVN?

I am trying to do an svn status to see the files I have not commited, however there is a folder called 'phpunit' and I would like to ignore that folder, is this possible?

Thanks, J

Community
  • 1
  • 1
user1269625
  • 3,121
  • 26
  • 79
  • 111

1 Answers1

3

See SVNBook article "Ignoring Unversioned Items".

The command you look for: svn propset svn:ignore "phpunit" .

See svn propset reference.

bahrep
  • 29,961
  • 12
  • 103
  • 150