我在尝试向heroku添加本地git存储库时遇到问题。我使用heroku create命令创建了一个远程heroku。
$ heroku create
Creating falling-wind-1624... done, stack is cedar
http://falling-wind-1624.herokuapp.com/ | git@heroku.com:falling-wind-1624.git
Git remote heroku added
但是,我没有看到" Git远程heroku添加"在我的控制台上。我不确定这是否是我尝试将Play应用部署到Heroku时遇到的原因。
即使在做
$ heroku git:remote -a falling-wind-1624
没有显示任何内容,之后当我输入git remote -v时,我没有看到添加了heroku git repo。
答案 0 :(得分:0)
我不确定为什么你没有看到列出的遥控器,但你可以通过这样做来添加它:
git remote add heroku git@heroku.com:falling-wind-1624.git
如果您随后运行git remote -v
,您应该会看到heroku的条目。