0

在尝试使用 capistrano 和 git 进行部署时,我遇到了这个错误:

    [178.79.133.74] executing command
 ** [178.79.133.74 :: out] Initialized empty Git repository in /var/www/depot31/shared /cached-copy/.git/
 ** [178.79.133.74 :: err] Host key verification failed.
 ** [178.79.133.74 :: err] fatal: The remote end hung up unexpectedly
    command finished in 292ms
failed: "sh -c 'if [ -d /var/www/depot31/shared/cached-copy ]; then cd /var/www/depot31/shared/cached-copy && git fetch  orig
in && git fetch --tags  origin && git reset  --hard aac2d7abf5281d7fb4993e39fc534ba44dd8d240 && git clean  -d -x -f; else git
 clone root@178.79.133.74:git/depot31.git /var/www/depot31/shared/cached-copy && cd /var/www/depot31/shared/cached-copy && git checkout -b deploy   aac2d7abf5281d7fb4993e39fc534ba44dd8d240; fi'" on 178.79.133.74

请问有什么线索吗?

4

1 回答 1

0

问题是,鉴于我正在尝试在 RVM 环境中部署,capistrano 正在尝试从我的开发机器中获取 RVM 环境变量,但由于 RVM 仅适用于基于 UNIX 的操作系统,因此无法找到它们。

所以,归根结底,主要问题是Windows。我现在正在切换到基于 UNIX 的操作系统。

于 2011-12-11T12:35:25.667 回答