我正在尝试设置我的生产应用程序的临时副本以在 heroku 上进行测试。我用了
$ heroku fork -a myapp-production myapp-staging
并且 stagin 应用程序工作正常 - 现在我尝试将它作为远程添加到我的 git 中:
$ git remote add staging git@heroku.com:myapp-staging.git
并且似乎可以毫无问题地添加到我的 git 遥控器中。但是当我尝试通过以下方式对其进行更改时:
$ git push staging master
我收到以下错误:
error: unable to resolve reference refs/remote/staging/master: No error
error: Cannot lock the ref 'refs/remotes/staging/master'.
Everything-up-to-date
不确定是什么问题....