SVN ignores hidden files (.project.pydevproject and. Files)

I want to ignore some hidden files (e.g. .project and .pydevproject) in SVN. At the moment they are already in our trunk, so I do not want to remove them from the trunk, as this can cause additional problems for other developers. So I tried to run:

svn propset svn:ignore .project .

but right after that, when I run svn status, it returns:

M .

and if I make changes to .project, it still tracks those changes. I also tried global ignoring in / etc / subversion / config, no luck.

What do you think is the best way to solve this problem?

Thank.

+5
source share
1 answer

svn:ignore , .

, ( , , ).

, :

  • svn rm
  • - svn up
  • svn up

.project svn svn st

+6

All Articles