我有一个 Rails capistrano 任务,可以部署代码并运行,但是当它从我的服务器的 git repo 中检出代码时,它会两次要求输入密码,有没有办法通过将密码放入 capistrano 脚本来绕过这个?代码示例如下...
set :repository, "ssh://gituser@example.com/opt/git/hub/app.git"
set :deploy_via, :copy
# server stuff unrelated..
set :user, "deployer"
set :password, "password"
我正在使用 capistrano 2 顺便说一句。谢谢。