我是所有这一切的新手,所以请原谅我的无知。
最近撞到了The Odin Project&想学习如何编码。 忙于下载所有必要的程序[Installfest],当发生这种情况时:
http://installfest.railsbridge.org/installfest/deploy_a_rails_app
在步骤2.5 :部署(推送)到heroku,他们要求我执行以下操作:
在终端中键入此内容 - > git push heroku master
预期结果:
The authenticity of host 'heroku.com (75.101.145.87)' can't be established.
RSA key fingerprint is 8b:48:5e:67:0e:c9:16:47:32:f2:87:0c:1f:c8:60:ad.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'heroku.com,75.101.145.87' (RSA) to the list of known hosts.
Counting objects: 60, done.
Compressing objects: 100% (54/54), done.
Writing objects: 100% (60/60), 79.03 KiB, done.
Total 60 (delta 10), reused 0 (delta 0)
-----> Heroku receiving push
-----> Rails app detected
Compiled slug size is 080K
-----> Launching...... done
App deployed to Heroku
To git@heroku.com:floating-winter-18.git
* [new branch] master -> master
在命令提示符下运行此命令时使用Ruby& Rails,我得到以下消息/问题/错误:
实际结果:
“https://git.heroku.com”的用户名:
这完全不应该出现,我对如何解决这个问题一无所知。你们有没有人知道如何解决这个问题所以我可以继续安装开始编码所必需的程序吗?
答案 0 :(得分:0)
您需要拥有一个heroku
帐户才能将其推送到heroku。如果你没有,你可以here
拥有heroku
帐户后。您需要做的就是在终端输入:
heroku login
输入您的Heroku凭证,您就可以将代码推送到您的网站。
答案 1 :(得分:0)
首先,您需要确保安装了Heroku Toolbelt。如果您尚未安装,可以在此处查看:https://toolbelt.heroku.com/。
其次,访问https://www.heroku.com/并注册一个帐户。
成功注册后,您可以在终端上运行heroku login
,然后输入刚刚用于创建帐户的凭据。
最后,重新运行git push heroku master
命令并享受成功推送!