git pushした際のエラーrequested URL returned error: 403の解決方法


git hubに上げようとした際に下記のエラーが表示されました。

requested URL returned error: 403

解決法

以下のコマンドをターミナルに入力します。

git remote set-url origin https://github.com/ユーザー名/アプリ名/.git

https://github.com/ユーザー名/アプリ名/.git の部分には下記画像のURLを入力してあげます。

そして、git push origin masterをします。

以上で完了です。