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.
source
share