从2021年8月13日开始,Github停止了使用密码授权的方法来远程控制和同步Github代码仓库的版本,今后必须使用Github的Personal access token来授权。
今天在向Github推送变更时,发现推送报错,报错内容如下:
15:40 Push failed
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.
unable to access ‘https://github.com/xxx.git/’: The requested URL returned error: 403
那如何来获取这个personal access token呢?
进入Github, Setting(设置)下的Developer settings选项,选择“Personal access token”,然后点击”Generate a personal access token“来生成这个token,生成成功以后就可以直接使用用户名和这个access token来远程登录你的Github账号了(将access token当成你的密码来使用)。
版权声明:除特殊说明,文章均为博主 去吐槽 原创文章,转载请注明原文出处。