2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

gitでPermisson Errorが出たので--localでname/emailを設定したのに改善しない場合の対応

Last updated at Posted at 2018-02-10

環境

  • Windows10
  • SourceTree 2.3.1.0 / GitBash
  • GitHub

発生した事象

  1. GitHubで別アカウント管理してるリポジトリにPushしようとしたらPermission Error
  2. エラーログには普段使っているアカウント名が表示されている
  3. そういえば設定変更してなかったので、git config --localでアカウントを切り替えてPushしようとしたら再度Permission Errorが発生
  4. エラーログには何故か切り替え前のアカウント名が表示されている
  5. why?

原因と解決策

git-credential-helperが有効になっており、name/emailがWindowsの資格情報で管理されていた。
それによりhttpsでGitHubへアクセスした際に--localの設定を使うまえにhelperで切り替え前アカウントの情報が参照されていた模様。
下記の方法でhelperが使う内容を変更すれば解決した。

  1. 「コントロールパネル」→「ユーザーアカウント」→「資格情報マネージャ」を選択する
  2. 「汎用資格情報」部分の「git:https://github.com」を選択する
  3. 「編集」リンクを押下して切り替え後アカウントの設定を入れる

雑記

そういえば、SourceTreeで最初にアクセスした時に認証ダイアログが出て入力したような気がするが、その時にhelper用のWindows資格情報が設定されていたのかな。

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?