📜  如何检查是否添加了 heroku git remote - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:09:12.051000             🧑  作者: Mango

如何检查是否添加了 heroku git remote - Shell/Bash

当你在使用 Heroku 来部署你的应用时,你需要将你的代码推送到 Heroku 的 Git 仓库中。为了实现这个目的,你需要将 Heroku 的 Git 仓库作为一个远程仓库添加到你的本地 Git 仓库中,这样你才能把你的代码推送到 Heroku。

在本文中,我们将介绍如何检查是否已经正确地将 Heroku Git 仓库作为远程仓库添加到了你的本地 Git 仓库中,以及如何在没有添加的情况下添加它。

检查是否添加了 Heroku Git Remote

首先,我们需要检查我们是否已经将 Heroku Git 仓库添加为远程仓库。你可以通过在终端运行以下命令来检查:

git remote -v

如果你已经添加了 Heroku,你应该能看到类似如下的输出:

heroku	https://git.heroku.com/<app-name>.git (fetch)
heroku	https://git.heroku.com/<app-name>.git (push)

如果你没有添加 Heroku 的远程仓库,那么这个命令将不会输出任何东西。

添加 Heroku Git Remote

如果你还没有将 Heroku Git 仓库添加为远程仓库,那么你需要按照以下步骤进行操作。

首先,你需要获取你的 Heroku 应用的 Git 远程仓库的 URL。你可以通过以下命令获取它:

heroku git:remote -a <app-name>

这将会输出类似如下的内容:

set git remote heroku to https://git.heroku.com/<app-name>.git

其中 <app-name> 是你的 Heroku 应用的名字。

然后,你可以运行 git remote -v 命令来检查你是否已经成功地将远程仓库添加到了你的本地 Git 仓库中。

heroku	https://git.heroku.com/<app-name>.git (fetch)
heroku	https://git.heroku.com/<app-name>.git (push)
结论

在本文中,我们介绍了如何检查是否已经正确地将 Heroku Git 仓库作为远程仓库添加到了你的本地 Git 仓库中,以及如何在没有添加的情况下添加它。现在,你可以通过这篇文章来检查和添加 Heroku 远程仓库了。