$git push heroku master
上記のコードを実行したら以下のようなエラーが起きました
$ git push heroku master error: src refspec master does not match any error: failed to push some refs to 'https://git.heroku.com/album.git'
[core] repositoryformatversion = 0 filemode = true bare = false logallrefupdates = true ignorecase = true precomposeunicode = true [remote "origin"] url = https://github.com/(name)/album.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "main"] remote = origin merge = refs/heads/main [remote "heroku"] url = https://git.heroku.com/album.git fetch = +refs/heads/*:refs/remotes/heroku/*
.git/config を確認したところ branch "main" となっていたので
$ git push heroku main
と入力してみたところ
$ git push heroku main remote: ! Your account 1574@gmail.com does not have access to webalbum. fatal: unable to access 'https://git.heroku.com/album.git/': The requested URL returned error: 403
またもやエラーになってしまいました。
どうすれば Heroku にリポジトリを push 出来るでしょうか
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。