ローカル環境から Github へ push しようとしたら403エラーになった


layout: post title: “2017-06-16-local-github-403-push-error” date: 2017-06-16 16:56:52 +0000

エラーメッセージ

$ git push origin master
error: The requested URL returned error: 403 Forbidden while accessing https://github.com…
fatal: HTTP request failed

解決方法

$ git remote set-url origin https://hogehoge@github.com/(username)/rss.git

原因

削除したリポジトリに push しようとしてました笑(だから403)。上記はちゃんと存在するリポジトリを指定するためのコマンド。

参考リンク

gitでpushしようとしたら403された話 - Qiita
新しくgitのアカウントを作り、ローカルでゴニョゴニョして、addしてcommitしてpushしたら↓のようなエラーが・・$ git push origin mastererror: The r…
タイトルとURLをコピーしました