I setup a svn repository according to this resource http://anandafit.info/2010/11/03/setup-a-subversion-server/
But server ask user name and password when I commit m
The link you post suggest this Apache configuration:
DAV svn
SVNPath /home/svn/svnproject
AuthType Basic
AuthName "Svnproject Repository"
AuthUserFile /etc/subversion/passwd
Require valid-user
The LimitExcept block is there to make checkout allowed without logging in, I'd replace it with just Require valid-user
:
DAV svn
SVNPath /home/svn/svnproject
AuthType Basic
AuthName "Svnproject Repository"
AuthUserFile /etc/subversion/passwd
Require valid-user