heroku twitter e_books:没有添加到提交但未跟踪的文件存在

时间:2016-06-27 16:42:09

标签: python ruby heroku twitter

我很擅长使用ruby和python以及github和所有这些东西 - 我曾经做过的唯一编程就是游戏引擎。但我想使用python-twitter,heroku_ebooks,当然还有heroku来制作一个随机的twitter e_books。一切都按照计划进行,直到最后一步。我尝试使用命令git commit -am "updated the local_settings.py",但它只是给了我一个红色文本的GIANT墙(我从他们的外观中假设的文件)并说"没有任何添加到提交但是未跟踪的文件存在& #34 ;.

尝试运行git push heroku master会导致其说:

error: src refspec master does not match any.
error: failed to push some refs to "https://git.heroku.com/xanderbot.git"

就像我说的那样,我对这样的编码非常陌生,所以我真的需要在外行人的条件下告诉我该怎么做,或者只是给了一段代码来打击这里所以我可以移动上。到目前为止,其他一切工作都很完美,我不知道如何解决这个问题。

2 个答案:

答案 0 :(得分:0)

尝试:

git push heroku HEAD:master

答案 1 :(得分:0)

我解决了我的问题!对于遇到相同问题并且找到此线程的任何人,我将本地文件放入计算机上的C:/目录中(不知道它为什么不在那里)并执行以下操作:

>cd C:/xanderbot
>git init
Initialized empty Git repository in C:/xanderbot/.git/
>heroku git:remote -a xanderbot
set git remote heroku to https://git.heroku.com/xanderbot.git
>git add .
>git commit -am "make it better"
>git push heroku master
>heroku run worker

现在twitter机器人已启动并运行!谢谢大家的意见!