在git push上,circleci部署到heroku失败了

时间:2015-05-10 16:17:07

标签: git heroku circleci

我刚刚设置了一个新项目,从circleci部署到heroku。我的构建脚本如下:

git push git@heroku.com:socialjusticebingo.git $CIRCLE_SHA1:refs/heads/master

在我的circleci构建的控制台中,我看到以下内容:

remote: Verifying deploy... done.
To git@heroku.com:socialjusticebingo.git
 ! [remote rejected] ca5c72a28f7ca9c793becd122e6bc73bf8f34b44 -> master (missing necessary objects)

1 个答案:

答案 0 :(得分:12)

显然这个问题与浅层克隆有关。我能够通过改变我的部署脚本来解决问题,如下所示:

git fetch origin --unshallow
git push git@heroku.com:socialjusticebingo.git $CIRCLE_SHA1:refs/heads/master