本文介绍了Heroku推送被拒绝,没有检测到Cedar支持的应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
git init
git remote add heroku < my heroku repo>
git add。
git commit -a -m第一次提交
git push heroku master
得到:
Counting objects:102,done。
使用多达4个线程的增量压缩。
压缩对象:100%(86/86),完成。
写作对象:100%(102/102),315.47 KiB,完成。
共计102(delta 3),重用0(delta 0)
** -----> Heroku接收推送
! Heroku推送拒绝,没有检测到雪松支持的应用程序**
至[email protected]:electric-dusk-3217.git
! [remote rejected] master - > master(pre-receive hook refused)
错误:未能将一些文件推送到< my heroku rep>
解决方案
问题是我的Gemfile被命名为 gemfile
I'm creating a Rails app with Rails 3.1.3:
git init
git remote add heroku <my heroku repo>
git add .
git commit -a -m "First commit"
git push heroku master
Got:
Counting objects: 102, done.
Delta compression using up to 4 threads.
Compressing objects: 100% (86/86), done.
Writing objects: 100% (102/102), 315.47 KiB, done.
Total 102 (delta 3), reused 0 (delta 0)
**-----> Heroku receiving push
! Heroku push rejected, no Cedar-supported app detected**
To [email protected]:electric-dusk-3217.git
! [remote rejected] master -> master (pre-receive hook declined)
error: failed to push some refs to <my heroku rep>
解决方案
The problem was that my "Gemfile" was named "gemfile"
这篇关于Heroku推送被拒绝,没有检测到Cedar支持的应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!