Heroku - 错误推动heroku掌握

时间:2017-12-16 07:00:00

标签: git heroku

这里的heroku新手。我无法推动heroku掌握部署我的heroku应用程序。

当我输入此代码时:

git push heroku master

我收到此错误:

error: src refspec master does not match any.
error: failed to push some refs to 'git@heroku.com:evening-scrubland-91960.git'

git@heroku.com:evening-scrubland-91960.git是我的应用的名称。

如果有帮助,我将使用此网站作为教程: https://devcenter.heroku.com/articles/getting-started-with-python#deploy-the-app

我还使用了以下网站的以下建议: I want make push and get error: src refspec master does not match any

任何建议都会很棒。谢谢。

2 个答案:

答案 0 :(得分:8)

如果您仍在使用“master”而不是“main”,您也可能会收到上述错误。

代替: “git push heroku master”

尝试: “git push heroku main”

答案 1 :(得分:0)

日志告诉你一切: src refspec master does not match any表示主分支上没有提交

请确保您已使用git add命令暂存更改,并在将其推送到遥控器之前使用git commit命令提交更改。