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:
<Location /svn/svnproject>
DAV svn
SVNPath /home/svn/svnproject
AuthType Basic
AuthName "Svnproject Repository"
AuthUserFile /etc/subversion/passwd
<LimitExcept GET PROPFIND OPTIONS REPORT>
Require valid-user
</LimitExcept>
</Location>
The LimitExcept block is there to make checkout allowed without logging in, I'd replace it with just Require valid-user
:
<Location /svn/svnproject>
DAV svn
SVNPath /home/svn/svnproject
AuthType Basic
AuthName "Svnproject Repository"
AuthUserFile /etc/subversion/passwd
Require valid-user
</Location>