> I installed win32svn in remote server which i can acees directly.
> I am trying to create subversion repository mirror in this remote server using
> "svnsync" through command line and the actual repo is located in different
> remote server.I am able to access this repo(from diff server) from SVNSLIK,
> but not able to connect subversion of windows compatible (win32svn)
> 
> command used:
> svnsync init file:///repository htp://repoURL/trunk/repoName --source-
> username AAA --source-password PWD
> (then)
> Authentication realm: XXX
> Username: AAA Password: PWD
> Again asked username and password, even i entered correct authentication
> info, thrown error.
> Error:
> svnsync:E215004:Unable to connect to a repository at URL
> htp://repoURL/trunk/repoName plz help me on this.

Is "htp" a typo in your email? You are using http:// when you are actually 
doing this?

Also, is there a reason you aren't specifying --sync-username and 
--sync-password on your command line?

Finally, I think your doing it backwards. The svnsync help shows:

svnsync initialize DEST_URL SOURCE_URL

Wouldn't file:///repository be your source, so your command line should be:

svnsync init http://repoURL/trunk/repoName file:///repository --sync-username 
AAA --sync-password PWD

...since you are using file:/// protocol for your source. 

Also, did you heed this in the help?

The destination URL must point to the root of a repository which has been 
configured to allow revision property changes.

BOb

Reply via email to