Herokuをインストールしてアカウントを設定しましたが、大学のプロキシが原因で、アプリのコードをアプリにプッシュできません。
このスレッドで提供されているソリューションを使用してみましたが、プロキシを介してgithubを機能させる方法についてこのページを読みましたが、それでもエラーが発生します。これは次のとおりです。
$git push heroku origin
ssh_exchange_identification: Connection closed by remote host
fatal: The remote end hung up unexpectedly
$git remote -v
heroku git_heroku:secret-hamlet-7718.git (fetch)
heroku git_heroku:secret-hamlet-7718.git (push)
origin https://github.com/saasbook/hw2_rottenpotatoes.git (fetch)
origin https://github.com/saasbook/hw2_rottenpotatoes.git (push)
私の.ssh/configファイルには次のものが含まれています。
ProxyCommand corkscrew [proxy_address] [proxy_port] %h %p
Host git_heroku
Hostname heroku.com
User git
Port 443
.git / configファイルの関連部分:
[remote "heroku"]
url = git_heroku:secret-hamlet-7718.git
fetch = +refs/heads/*:refs/remotes/heroku/*
私は何かを逃したとかなり確信しています。誰かが何を指摘してくれることを願っています。