Local から Github へ push しようとしたら403エラーになった
エラーメッセージ
$ 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://[email protected]/(username)/rss.git
原因
削除したリポジトリに push しようとしてました笑(だから403)。上記はちゃんと存在するリポジトリを指定するためのコマンド。
参考リンク
http://qiita.com/ritukiii/items/0d14df8f0253ca223373











