如何更改Git远程仓库?

问题描述 投票:0回答:2

考虑:

PS C:\.dev\despesas-python> heroku create app-despesas-pessoais-python
 »   Warning: heroku update available from 7.53.0 to 8.0.5.
Creating ⬢ app-despesas-pessoais-python... done
https://app-despesas-pessoais-python.herokuapp.com/ | https://git.heroku.com/app-despesas-pessoais-python.git
PS C:\.dev\despesas-python> git push heroku main
remote: !       No such app as radiant-gorge-67370.
fatal: repository 'https://git.heroku.com/radiant-gorge-67370.git/' not found
PS C:\.dev\despesas-python> git push heroku main app-despesas-pessoais-python
error: src refspec app-despesas-pessoais-python does not match any
error: failed to push some refs to 'https://git.heroku.com/radiant-gorge-67370.git'
PS C:\.dev\despesas-python> git push heroku app-despesas-pessoais-python
error: src refspec app-despesas-pessoais-python does not match any
error: failed to push some refs to 'https://git.heroku.com/radiant-gorge-67370.git'

我想部署到 https://git.heroku.com/app-despesas-pessoais-python.git,但出现错误 未能将一些参考推送到“https://git.heroku.com/radiant-gorge-67370.git”。 有没有办法连接到新的 Heroku 存储库地址?

python docker flask heroku
2个回答
2
投票

要更改 Git 存储库的远程存储库,您需要更新

heroku
远程的 Git 远程 URL。您可以通过以下步骤来完成此操作:

  1. 通过在终端中运行命令

    git remote -v
    来检查当前的远程 URL。

  2. 通过运行命令

    git remote rm
    heroku 删除当前的 Heroku 遥控器。

  3. 通过运行命令

    heroku git:remote -a app-despesas-pessoais-python
    添加新的 Heroku 遥控器。

  4. 通过运行命令

    git remote -v
    验证新的遥控器是否已正确添加。

  5. 通过运行命令

    git push heroku main
    将更改推送到新的 Heroku 遥控器。


0
投票

第 3 步 - 添加新的 heroku 遥控器

git remote set-url heroku https://git.heroku.com/app-despesas-pessoais-python.git

第 4 步 - 将更改添加到存储库

 git add .

第 5 步 - 将更改提交到存储库

git commit -m [file]

setp 6 - 推送到仓库

git push heroku main

© www.soinside.com 2019 - 2024. All rights reserved.