我有两个heroku帐户,有两个单独的应用程序.我是新手,但我认为关键是坚持一个帐户,不允许我打开另一个帐户.我该怎么办,如何添加其他帐户?
解决方法
管理多个Heroku帐户的步骤
从计算机上的以下URL安装插件
https://github.com/ddollar/heroku-accounts
如果您遇到指纹授权问题,请按照以下步骤操作
>首先使用以下命令添加帐户
heroku accounts:add account_name –auto
此命令将生成与此帐户关联的单独公钥,以便它不会与其他帐户冲突.
>下一步是使用以下命令为帐户创建应用程序
heroku create app_name –account account_name
>最后一步是将应用程序推送到Heroku,这是您将遇到指纹问题的区域.
打开.ssh文件夹中的配置文件,您可以在其中找到添加帐户的以下条目.
Host heroku.account_name
HostName heroku.com
IdentityFile /home/icicle/.ssh/identity.heroku.account_name
IdentitiesOnly yes
删除Heroku存储库
git remote rm heroku
添加新的Heroku存储库
git remote add heroku git@heroku.account_name:app_name.git
这里heroku.account_name是在ssh配置文件中添加为Host的那个.
现在尝试推送您的应用程序,它的工作原理.