Hi all I am new to subversion and that is why i need to ask what is the issue i am getting so basically I am trying to run an SVN Update for my working branch -bash-3.2$ svn info
Path: .
URL: http://svn.xxxx.xx.xx/branches/staging after the svn update command it is asking me for a password -bash-3.2$ svn update So I am giving my password and then it asked me for this Authentication realm: http://svn.xxxx.xx.xx:80 SVN and then i got this: svn: PROPFIND request failed on '/branches/staging' I don't know why it asks me for another username and password if at first place asked me to confirm my password please help with that cause I can't run my SVN update thanks in advance asked 29 Oct '10, 04:23 dikei2000 |
Subversion will default to using your logged in username ($USER) if one is not provided. If authentication fails, subversion will try again but allow you to specify a username as well. In this case, it's likely that authentication is failing. You are able to specify a username initially using the "--username" parameter. The failing authentication is likely being caused by the username/password combination not existing in the .htpasswd file associated with the svn repository. More information on managing subversion users can be found here: http://docs.webfaction.com/software/subversion.html#managing-users answered 29 Oct '10, 06:03 ryans ♦♦ |