分支上的部署失败 - 不是有效的对象名

时间:2015-09-22 07:50:23

标签: git capistrano

我正在尝试使用Capistrano部署另一个分支。部署主分支工作正常,但我的“daniel”分支失败,出现以下错误:

INFO[e8d2a50d] Running /usr/bin/env git archive daniel | tar -x -C /data/apps/dimsum.staging/releases/20150922073756 on <ip number>
DEBUG[e8d2a50d] Command: cd /data/apps/dimsum.staging/repo && ( GIT_ASKPASS=/bin/echo GIT_SSH=/tmp/dimsum.staging/git-ssh.sh /usr/bin/env git archive daniel | tar -x -C /data/apps/dimsum.staging/releases/20150922073756 )
DEBUG[e8d2a50d]     fatal: Not a valid object name
DEBUG[e8d2a50d]     tar: This does not look like a tar archive
DEBUG[e8d2a50d]     tar: Exiting with failure status due to previous errors
cap aborted!
SSHKit::Runner::ExecuteError: Exception while executing on host <ip number>: git exit status: 2
git stdout: Nothing written
git stderr: fatal: Not a valid object name
tar: This does not look like a tar archive
tar: Exiting with failure status due to previous errors

这些是我的部署文件:

#deploy.rb
set :application, 'dimsum_v2'
set :repo_url, 'git@bitbucket.org:<git repo>.git'

#staging.rb
set :stage, :staging
set :application, "dimsum.staging"

set :app_path, "/data/apps/#{fetch(:application)}"
set :branch, 'daniel'
set :deploy_to, fetch(:app_path)
server '<ip number>', user: 'deploy', roles: %w{web app}, my_property: :my_value

直接在服务器上克隆master和daniel分支也可以正常工作。 E.g:

git clone -b daniel  git@bitbucket.org:<git repo>.git

可能是什么问题?

1 个答案:

答案 0 :(得分:2)

如果你确定git@bitbucket.org:<git repo>.git daniel 分支,那么当Capistrano创建/ data / apps / dimsum时可能没有。 staging / repo文件夹。

只需在服务器中使用repo / dir,然后再从头开始创建它(: