I started a new project in rails and setup a server and assembla to have my subversion files in Assembla and to deploy with Capistrano to my server.
The problem is that when I do cap deploy I get an error message:
* executing `deploy'
* executing `deploy:update'
** transaction: start
* executing `deploy:update_code'
executing locally: "svn info https://subversion.assembla.com/svn/myappname/trunk/ -rHEAD"
command finished in 4687ms
* executing "svn export -q -r4 https://subversion.assembla.com/svn/myappname/trunk/ /home/administrator/myappname/releases/20111028232813 && (echo 4 > /home/administrator/myappname/releases/20111028232813/REVISION)"
servers: ["my.server.url"]
Password:
[my.server.url] executing command
** [my.server.url :: out] Authentication realm: <https://subversion.assembla.com:443> Assembla Restricted Area
** Password for 'administrator':
** [my.server.url :: out]
** [my.server.url :: out] Authentication realm: <https://subversion.assembla.com:443> Assembla Restricted Area
** Username:
beyond that I add my Assembla Username and it just freezes there and nothing else happens
My deploy.rb has the correct svn url and id and password (I made sure it by checking the url in a browser and entering those credentials)
I also tried svn cleanup as suggested in other post, but I didn't have any luck.
How can I fix this problem? Thanks in advance
Running a checkout of the repository on the server, saving the password and then setting deploy.rb's svn info like this:
where your_svn_url is set with http and not https