2017-11-10 15 views
0

、私はこれを行うことができます:私はそれを名前を変更したい場合はgitを使ってカスタム名でHerokuにアプリをデプロイしますか? <a href="https://devcenter.heroku.com/articles/git" rel="nofollow noreferrer">Heroku's guide</a>から

heroku create 

その後、

git push heroku master 

(生成された名前を持つHerokuのリポジトリが存在します)(私はとにかくする必要があります)、私はこれやる:

git remote rename generated-name the-name-i-want 

をしかし、私はカスタム名でHerokuのリポジトリを作成したい場合は、私は、端末を使用して自分のコードを展開することはできません。

heroku create the-name-i-want 

git push heroku master 

スローエラー

fatal: 'heorku' does not appear to be a git repository 
fatal: Could not read from remote repository. 

または

git push heroku the-name-i-want master 

または

git push the-name-i-want master 

スローエラー

fatal: 'the-name-i-want' does not appear to be a git repository 
fatal: Could not read from remote repository. 

gitを使用してカスタム名でherokuにコードをデプロイするにはどうすればよいですか? は、私は次の2つの概念をconflatingしているWindows 10

答えて

1

を使用します。例でherokugitのリモート、ないアプリケーションの名前です。

はのは、その見てみましょう:git push heroku masterは、リモートmasterを分岐しheroku呼ばにあなたの現在のブランチをプッシュします。

heroku create the-name-i-wantあなたはまだherokuというgitリモートを取得します。

あなたの代わりに

git remote rename generated-name the-name-i-want 

使用後

git remote rename heroku the-name-i-want 

の、リモートの名前を変更したいときにすることができます、あなたがエラーを得た理由です

git push the-name-i-want master 

fatal: 'the-name-i-want' does not appear to be a git repository

リモート名とURLをgit remote -vで確認してください。

+1

ありがとう@msanford – Viet

+0

@Viet Pleasure! – msanford

関連する問題

 関連する問題