2016-12-08 12 views
1

私はherokuにmaアプリを配備するのに問題があります。herokuリモートを変更できません

私はgit remote -vを行うと、私が持っている:

heroku [email protected]:https://git.heroku.com/myapp.git (fetch) heroku [email protected]:https://git.heroku.com/myapp.git (push)

の代わり:

heroku https://git.heroku.com/myapp.git (fetch) heroku https://git.heroku.com/myapp.git (push)

をどのように私は右のURLを付加[email protected]:を削除するには?

ありがとう

答えて

0

これらのコマンドを使用して、heroku remoteを変更します。

git remote rm heroku 
git remote add heroku https://git.heroku.com/myapp.git 
関連する問題