発生している問題・エラーメッセージ
HerokuにPythonのbotをデプロイしたいのですが、pushしたときにエラーが出て困ってます
console
1$ git push heroku master
error: failed to push some refs to 'https://git.heroku.com/iksdisbot001.git'
補足情報(FW/ツールのバージョンなど)
win10
python3.6.5
回答にあったこちらを実行したところ
$ git push origin :branch-name fatal: 'origin' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists. $ git push origin branch-name error: src refspec branch-name does not match any. error: failed to push some refs to 'origin'
追記
$ git push heroku :branch-name error: unable to delete 'branch-name': remote ref does not exist error: failed to push some refs to 'https://git.heroku.com/disiksbot2.git' $ git push heroku branch-name error: src refspec branch-name does not match any. error: failed to push some refs to 'https://git.heroku.com/disiksbot2.git'
$ git push heroku master Enumerating objects: 6, done. Counting objects: 100% (6/6), done. Delta compression using up to 4 threads Compressing objects: 100% (4/4), done. Writing objects: 100% (6/6), 1.91 KiB | 653.00 KiB/s, done. Total 6 (delta 0), reused 0 (delta 0) remote: Compressing source files... done. remote: Building source: remote: remote: -----> Python app detected remote: ! The latest version of Python 3.6 is python-3.6.6 (you are using python-3.6.5, which is unsupported). remote: ! We recommend upgrading by specifying the latest version (python-3.6.6). remote: Learn More: https://devcenter.heroku.com/articles/python-runtimes remote: -----> Installing python-3.6.5 remote: -----> Installing pip ~(入りきらなかった為、中略)~ remote: No matching distribution found for pywin32==223 (from -r /tmp/build_aaa89c5c08ef59044e2244fc58efec64/requirements.txt (line 32)) remote: ! Push rejected, failed to compile Python app. remote: remote: ! Push failed remote: Verifying deploy... remote: remote: ! Push rejected to disiksbot2. remote: To https://git.heroku.com/disiksbot2.git ! [remote rejected] master -> master (pre-receive hook declined) error: failed to push some refs to 'https://git.heroku.com/disiksbot2.git'
すみません...
pushする前にコミットの部分でエラーが出てました
$ git commit -m "my first commit" On branch master nothing to commit, working tree clean
更新遅くなりました
こちらの記事を参考に作成していました
https://qiita.com/yoshixj/items/6441ab2cd6bc367e607d これは試されましたか
origin ではなく herokuですね。
ありがとうございます。originをherokuに変えて入力したところ、error: unable to delete 'iksdisbot001': remote ref does not existとエラーが出たのですが、ブランチ名とはどこのことでしょうか。
ブランチ名はmasterのことです。ただ、こちらも勘違いしていたようです。このQiitaの記事の件とは関係ないかもしれません。
エラーの全文を見せていただけませんか
わかりました。もう少し過去記事を漁ってみます
一部省略しましたがpushした際のエラー文を載せさせて頂きました
入り切らなかったため中略の部分が肝心な気がします。最初からどういう経緯で、どんなプロジェクトで構成されているのかまで詳細に記さないと判断する余地がありません。
参考にした記事や書籍などがあれば追記おねがいします。
ローカルの環境で動くことは確認しましたか?
必要以上のライブラリがよみこまれていたため、動いてなかったようです
回答2件
あなたの回答
tips
プレビュー