Displaying 2 results from an estimated 2 matches for "scm_username".
Did you mean:
s_username
2013 May 10
2
capistrano and scm_username and github
In the capistrano wiki, it contains this line:
set :scm_username, “foo”. If you access your source repository with a
different user name than you are logged into your local machine with,
Capistrano needs to know.
Actually the way I access my repository through my app is through ssh
keys. The only user name I have with github is the one I use to log
into github...
2010 Sep 09
4
Capistrano Deploy with SVN over SSH - Network connection closed unexpectedly
...vn client. I will post my deploy.rb maybe there is something wrong:
set :application, "******"
set :domain, "*****"
set :repository, "svn+ssh://ssh-username-LuuGFW4anxJsqSCBsoyqvtBPR1lH4CV8@public.gmane.org/kunden/*******/svn/******/trunk"
set :scm, :subversion
set :scm_username, "ssh-username"
set :scm_password, "password"
# Or: `accurev`, `bzr`, `cvs`, `darcs`, `git`, `mercurial`, `perforce`, `subversion` or `none`
set :deploy_via, :checkout
set :deploy_to, "/kunden/*******"
set :user, "username"
set :password, "password"...