I need to exclude some files from Subversion, using a .svnignore file:
> more .svnignore
*.obj
*.abc
*.aaa
> touch f1.cpp
> touch f2.abc
> svn add --force ./
A f1.cpp
A f2.abc
Why is f2.abc added to the repository, even if its extension should not allow that?
After modifying
.svnignore, I had to re-run: