OSはMacです。
@laravel % git remote set-url origin https://github.com/gituser/repository-laravel.git @laravel % git push -u origin master remote: Permission to gituser/repository-laravel.git denied to before_user. fatal: unable to access 'https://github.com/gituser/repository-laravel.git/': The requested URL returned error: 403
上記より、git push をしたところ権限がないとエラーとなってしまいました。
経緯といたしましては、とあるリポジトリからGit cloneを行い、そのフォルダやファイルを、
自分のGithubアカウントに、pushをしたく、
git remote set-url originを実行して、git pushを行ったところ失敗となりました。
上記は、git config --local user.nameや、git config --local user.emailや、cat .git/configなどで確認したところ、
正常に、gituserに設定されているのですが、 before_userのエラー権限がないと出力されてしまします。
こちらは、以前に使用していた、異なるGithubアカウントでのユーザーなのですが、設定を解除することができません。
こちらはどのようにして設定を解除することができますでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/22 06:16