ある日突然MacからGitHubのプライベートリポジトリに対してpullができなくなりました

ある日突然MacからGitHubのプライベートリポジトリに対してpullができなくなりました。

$ git pull
remote: Repository not found.
fatal: repository 'https://github.com/YOUR_REPO.git/' not found

せめて認証情報を再度入力させるとかすればいいもののそれすら出ない様子。

どうやらKeychainのデータが壊れた模様。

「アプリケーション」→「ユーティリティ」→「キーチェーンアクセス」を開いて「github.com」で検索、出てきたものを削除することで修復できます。

$ git pull
Username for 'https://github.com':

参考

https://stackoverflow.com/questions/25947059/git-clone-repository-not-found

https://help.github.com/articles/updating-credentials-from-the-osx-keychain/