Ruby on Rails 和 Heroku 问题

发布于 2024-10-16 05:41:42 字数 407 浏览 0 评论 0原文

$ git push heroku master

我基本上收到这个错误消息。

error: src refspec master does not match any.
error: failed to push some refs to '[email protected]:falling-stone-505.git'

我对计算机编程和 ruby​​ on Rails 非常陌生,因此将不胜感激解决此问题的“白痴”指南。

提前致谢。

$ git push heroku master

I basically get this error message.

error: src refspec master does not match any.
error: failed to push some refs to '[email protected]:falling-stone-505.git'

I'm very new to computer programming and ruby on rails so an "idiots" guide to solving this would be appreciated.

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无法回应 2024-10-23 05:41:42

您还没有承诺任何要推动的事情。尝试这样做:

$ git add -A
$ git commit

然后再次尝试推送到 Heroku。

您可以尝试按照本教程进行操作,但我不能保证这一点。这个领域的大多数专业成果都是书籍。

You haven't committed anything to push yet. Try doing:

$ git add -A
$ git commit

Then try to push to Heroku again.

You might try following along with this tutorial, although I can't vouch for it. Most of the professional endeavors in this space are books.

智商已欠费 2024-10-23 05:41:42

如果您希望将来更容易跟踪您的提交,在

1.

$ git add -A

2.

之后,

$ git commit

您可以使用

$ git commit -m "add a message here such as FIRST COMMIT or PROBLEM WITH CONTACTS VIEW ADDRESS VARIABLE TYPO FIXED."

3.
那么你可以

$ git push heroku master

If you want your commits to be easier to track in the future, after

1.

$ git add -A

2.

instead of

$ git commit

you can use

$ git commit -m "add a message here such as FIRST COMMIT or PROBLEM WITH CONTACTS VIEW ADDRESS VARIABLE TYPO FIXED."

3.
Then you can

$ git push heroku master
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文