git, Heroku: pre-receive hook declined

后端 未结 15 2829
时光取名叫无心
时光取名叫无心 2020-12-09 02:33

I am in the process of setting up a git repository and attempting to link it to Heroku. When I run the command

git push heroku master

I rec

相关标签:
15条回答
  • 2020-12-09 03:07

    I had the same problem but with a Django app, it turned out that pip wasn't able to download/install one of the dependencies of the requirements.txt file (it was eyeD3)

    0 讨论(0)
  • 2020-12-09 03:07

    This may not help everyone, but it solved my issue - My issue was I forgot to bundle install before pushing.

    Hope this helps

    0 讨论(0)
  • 2020-12-09 03:08

    For me it was an unused import in java app , removed the unused import and everything built fine.

    0 讨论(0)
提交回复
热议问题