无法找到Heroku存储库的URL

时间:2015-06-12 20:48:10

标签: ios heroku opentok

我一直在关注https://github.com/opentok/learning-opentok-ios/tree/basics.step-7尝试使用OpenTok SDK在iOS上使用视频应用。

我已经使用https://dashboard.heroku.com/new?template=https%3A%2F%2Fgithub.com%2Fopentok%2Flearning-opentok-php&button-url=https%3A%2F%2Fgithub.com%2Fopentok%2Flearning-opentok-php发布了一个名为dongu的应用。我认为git URL是git@heroku.com:dongu.git,但是它没有用。

Error log:

News-MacBook-Pro:Dongu michaelnares$ git remote add heroku git@heroku.com:dongu.git
News-MacBook-Pro:Dongu michaelnares$ git add --all
News-MacBook-Pro:Dongu michaelnares$ git push heroku master
error: src refspec master does not match any.
error: failed to push some refs to 'git@heroku.com:dongu.git'
News-MacBook-Pro:Dongu michaelnares$ git heroku git:remote -a dongu
git: 'heroku' is not a git command. See 'git --help'.

Did you mean this?
    checkout

我想要做的就是在我的Heroku应用程序中添加一个简单的HTML文件,但是我找不到要从中推送的URL。有没有办法找到它?

3 个答案:

答案 0 :(得分:1)

尝试

  

heroku git:remote -a dongu

然后

  

git push heroku master

答案 1 :(得分:1)

它可能不是一个git repo。 首先运行git init

答案 2 :(得分:0)

只需按照https://dashboard.heroku.com/apps/dongu/deploy/heroku-git中的说明操作即可,无需我知道远程网址,希望这对其他有此问题的人有用。