相关疑难解决方法(0)

Capistrano + Git:生产服务器的本地存储库

我正在尝试为我的应用程序"部署:冷".git仓库是我的部署服务器本地的(即我只有一台服务器用于所有东西,我不在github上托管我的代码).

这是成绩单(将我的应用名称替换为"myapp"以获取隐私)

  * executing `deploy:cold'
  * executing `deploy:update'
 ** transaction: start
  * executing `deploy:update_code'
    executing locally: "git ls-remote /home/mrichman/git/myapp.git master"
fatal: '/home/mrichman/git/myapp.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly
*** [deploy:update_code] rolling back
  * executing "rm -rf /var/www/myapp.com/releases/20100218203108; true"
    servers: ["myapp.com"]
Password:
    [myapp.com] executing command
    command finished
Command git ls-remote /home/mrichman/git/myapp.git master returned status code 32768
Run Code Online (Sandbox Code Playgroud)

这是我的deploy.rb:http://pastie.org/831424

我也试过了

set :repository, "deploy@localhost:/home/mrichman/git/myapp.git"
Run Code Online (Sandbox Code Playgroud)

但这给了我

ssh: connect to host localhost port 22: Connection …
Run Code Online (Sandbox Code Playgroud)

git deployment capistrano ruby-on-rails

18
推荐指数
1
解决办法
2万
查看次数

标签 统计

capistrano ×1

deployment ×1

git ×1

ruby-on-rails ×1