Github Access by Token

git pushできなくなった!?

2021年8月13日でパスワードアクセスができなくなる、それは知っていた。 で、事前にpasswordの代わりとなるTokenの準備までしていた。 しかし、git pushした途端、

remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
remote: Please see https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/ for more information.
fatal: unable to access 'https://github.com/bonohu/xxx.git/': The requested URL returned error: 403

と言われ。

そこで、Mac が覚えている GitHub のパスワードをパーソナルアクセストークンに変更するを参考に設定変更。

どうもMacのシステムが覚えてくれているっぽいので、キーチェーンでGithubに関して覚えてくれているpasswordエントリを消去して再度git push

Username for 'https://github.com':

と訊かれたのでまずbonohu。 次に

Password for 'https://bonohu@github.com':

と訊かれるが、passwordでなく、生成したTokenを入力。 そうするとうまく通りましたとさ。


Written by Hidemasa Bono in misc on 日 15 8月 2021.