前提・実現したいこと
gitでpush先をsshからhttpsに変更したいです。
railsチュートリアルを勉強中herokuにpushできなくなり解決策を模索中に泥沼にハマりました。
発生している問題
terminal
1git config --global url."git@heroku.com:".insteadOf https://git.heroku.com/
を実行したところ。y/nを聞かれ、迂闊にyesyesしていたら
herokuのpush先がsshに変更されてしまい、
terminal
1git remote -v 2heroku ssh://git@heroku.com/####.git (fetch) 3heroku ssh://git@heroku.com/####.git (push) 4origin https://github.com/###/###.git (fetch) 5origin https://github.com/###/###.git (push)
のまま1週間が経とうとしています。
試したこと
戻すために
terminal
1git config --global url."https://git.heroku.com/".insteadOf git@heroku.com: 2 3git config --global url.https://git.heroku.com/.insteadOf git@heroku.com/ 4 5git config --global url."https://git.heroku.com/".insteadOf git@heroku.com/
をそれぞれ実行しましたが反応なしです。
お助けください。
補足情報(FW/ツールのバージョンなど)
git version 2.23.0
heroku/7.35.0 darwin-x64 node-v12.13.0
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。