如何将我的存储库附加到 heroku 应用程序
我创建了一个 heroku 应用程序,然后我的机器崩溃了。我有一台新机器。如何将现有应用程序附加到 heroku 应用程序。当我访问 heroku 页面时,我的应用程序的 url 是这样的,
[email protected]:myapp.git
我无法克隆这个应用程序,因为我已经从 github 获得了 myapp
。所以我需要将 heroku 添加为远程到我现有的 github 应用程序。任何人都知道语法。
I create a heroku app and then my machine crashed. I have a new machine. How do I attach my existing app to heroku app. When I visit heroku page the url for my app is like this
[email protected]:myapp.git
I can't do clone this app because I already have myapp
from github. So I need to add heroku as remote to my existing github app. Anyone knows the syntax.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您有 Heroku Toolbelt:
如果您使用 Heroku Toolbelt,则较新的语法为
heroku git:remote -a project
请参阅 此了解更多信息。
鸣谢:
user101289
的解决方案否则,如果您没有heroku工具带:
首先执行此操作:
然后执行此操作:
If you've heroku toolbelt:
If you're using the Heroku Toolbelt, the newer syntax is
heroku git:remote -a project
See this for more.
Credits:
user101289
's solutionElse if you don't have heroku toolbelt:
First do this:
Then do this:
如果您使用 Heroku Toolbelt,则较新的语法为
heroku git:remote -a project
请参阅此了解更多信息。
If you're using the Heroku Toolbelt, the newer syntax is
heroku git:remote -a project
See this for more.
如果您仅使用 Git 而不安装 Heroku Toolbelt< /em>,您还可以创建一个新的应用程序。
登录您的帐户并转到此链接
https://dashboard.heroku.com/apps
查看右上角的加号,然后选择
创建新应用
将应用程序名称留空,让heroku 为您选择一个。
假设您的heroku应用程序名称是new-app-xxxxx,因此要测试向其中添加文件,您可以尝试以下命令:
当Git提示输入用户名时,将空(空白),并且您的 API 密钥作为密码。您可以通过以下链接获取您的 API 密钥。
https://dashboard.heroku.com/account
注意:您无法使用 Heroku HTTP Git 端点进行身份验证您的 Heroku 用户名(电子邮件)和密码。按照此处所述使用 API 密钥。
If you're using just Git without installing the Heroku Toolbelt, you can also create a new application.
Login to your account and go to this link
https://dashboard.heroku.com/apps
Look at the plus sign on the top right corner then select
Create new app
Leave the application name blank to let heroku choose one for you.
Let say your heroku app name is new-app-xxxxx, so to test on adding a file in to it you may try the following command:
Put empty (blank) when the Git prompt for username, and your API Key for the password. You can get your API Key by showing it from the link below.
https://dashboard.heroku.com/account
Note: You cannot authenticate with the Heroku HTTP Git endpoint using your Heroku username (email) and password. Use an API key as described here.