我有一个需要 gem 的 rails 应用程序。我在私有存储库中的 bitbucket 上托管这个 gem。
在我的 Gemfile 中,我添加了 gem,如下所示:
gem "my-gem", :git => "git@bitbucket.org:my-username/my-gem.git", :branch => 'master'
我想在heroku上部署我的rails应用程序
git push heroku master
现在我总是收到以下错误
Fetching git@bitbucket.org:my-username/my-git-repo.git
Host key verification failed.
fatal: The remote end hung up unexpectedly
我理解错误,因为存储库设置为私有。但是我该如何解决这个问题呢?
我已经读过这个问题:Deploying to Heroku using git on bitbucket,但我并没有真正得到答案:)..