我在 heroku 上创建了一个应用程序并推送了我的代码(在创建 git repo by 之后git init
)。
我的app
文件夹包含一个我之前requirements.txt
错误地放在其中的. (实际上是需要安装的,所以应该在它之前)。 matplotlib
numpy
numpy
matpplotlib
当我推送到heroku master,
编译失败并显示错误消息“需要安装 matplotlib”时。
所以我更正了项目的顺序requirements.txt
和使用git add
等git commit
提交它。
然后我尝试再次使用git push heroku master
.
但它失败了,同样的错误信息
这里是requirements.txt
Django==1.4.3
South==0.7.6
distribute==0.6.28
dj-database-url==0.2.1
django-registration==0.8
numpy==1.6.2
matplotlib==1.2.0
psycopg2==2.4.6
python-memcached==1.48
wsgiref==0.1.2
simplejson==3.0.7
然后我尝试使用
git status
它产生了
# On branch master
# Your branch is ahead of 'origin/master' by 2 commits.
# nothing to commit (working directory clean)
我曾经将我的代码添加到 Github。
我认为这origin/master
与此有关。我错了吗?
如何在 heroku 上找到我的提交状态?
我的应用有一个名字 say git@heroku.com:myapp.git
。