如何将我的存储库附加到 heroku 应用程序

发布于 2024-11-26 19:23:46 字数 375 浏览 0 评论 0原文

我创建了一个 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 技术交流群。

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

发布评论

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

评论(3

昔梦 2024-12-03 19:23:46

如果您有 Heroku Toolbelt:

如果您使用 Heroku Toolbelt,则较新的语法为

heroku git:remote -a project

请参阅 了解更多信息。

鸣谢:user101289的解决方案

否则,如果您没有heroku工具带:

首先执行此操作:

git remote add heroku [email protected]:{heroku-app-name}.git

然后执行此操作:

git push heroku master
heroku open

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 solution

Else if you don't have heroku toolbelt:

First do this:

git remote add heroku [email protected]:{heroku-app-name}.git

Then do this:

git push heroku master
heroku open
困倦 2024-12-03 19:23:46

如果您使用 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.

愚人国度 2024-12-03 19:23:46

如果您仅使用 Git 而不安装 Heroku Toolbelt< /em>,您还可以创建一个新的应用程序。

登录您的帐户并转到此链接

https://dashboard.heroku.com/apps

查看右上角的加号,然后选择

创建新应用

将应用程序名称留空,让heroku 为您选择一个。
假设您的heroku应用程序名称是new-app-xxxxx,因此要测试向其中添加文件,您可以尝试以下命令:

git clone https://git.heroku.com/<new-app-xxxxx>.git
cd <new-app-xxxxx>
echo "my test file" > test.txt
git add .
git commit . -m "my test on commit" 
git push

当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:

git clone https://git.heroku.com/<new-app-xxxxx>.git
cd <new-app-xxxxx>
echo "my test file" > test.txt
git add .
git commit . -m "my test on commit" 
git push

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.

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