failed to push some refs to git@heroku.com

后端 未结 27 2282
野性不改
野性不改 2020-12-02 10:10

I am getting this error when I am trying push my files into heroku rep.

Ive set autocrlf = false already in gitconfig but this problem is still there. i have also tr

27条回答
  •  失恋的感觉
    2020-12-02 10:22

    Execute this:

    $ rake assets:precompile
    $ git add .
    $ git commit -m "Add precompiled assets for Heroku"
    $ git push heroku master
    

    Source: http://ruby.railstutorial.org/ruby-on-rails-tutorial-book

提交回复
热议问题