Herokuでのデプロイエラー
Herokuを利用してRailsのアプリを初めてデプロイしようとしたのですが、git push heroku masterでエラーが出てしまいます。
参考にしたサイト:https://qiita.com/kazukimatsumoto/items/a0daa7281a3948701c39
terminal
1$ heroku login 2$ heroku create ○○ 3$ git push heroku master 4Enumerating objects: 180, done. 5Counting objects: 100% (180/180), done. 6Delta compression using up to 4 threads 7Compressing objects: 100% (165/165), done. 8Writing objects: 100% (180/180), 843.00 MiB | 3.65 MiB/s, done. 9Total 180 (delta 22), reused 0 (delta 0) 10remote: 11remote: ! Size of checkout and restored submodules exceeds 1 GB. Reduce size and try pushing again. 12remote: 13To https://git.heroku.com/○○.git 14 ! [remote rejected] master -> master (pre-receive hook declined) 15error: failed to push some refs to 'https://git.heroku.com/○○.git'
調べたところ、リポジトリがmasterだとデプロイできないというような記事を見つけたので、
試してみましたが、うまくいかず。。。
参考にしたサイト:https://stackoverflow.com/questions/2816369/git-push-error-remote-rejected-master-master-branch-is-currently-checked
対処法をご教示いただけると幸いです。
よろしくお願いします。
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/09/25 07:46