I want that everytime someone wants to checkout the project from SVN he/she will be prompted for credentials. This happens when someone tries to commit something, but not at checkout. Here is the svnserve.conf section :
[general]
anon-access = none
auth-access = write
password-db = passwd
I figured that by setting anon-access to none, this will prompt for a username & password, but this doesn't seem to happen. How can I fix this? What do I need to change?