天天看点

remote: Support for password authentication was removed on August 13, 2021.

今天Git上传项目时遇到了以下报错:

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/LALBJ/LAndW.git/': The requested URL returned error: 403
           

2021年8月13日之后,就不再支持密码验证进行上传了,需要使用私人的token进行上传。

具体信息见Token authentication requirements for Git operations

因此为了解决这个问题,我们需要自己申请一个个人访问令牌,通过令牌进行上传等操作。

这里,我附上一个教程里面详细介绍了申请令牌的步骤。

GitHub 创建个人访问令牌

在申请完令牌后删除掉本地凭据(也就是账号密码信息),再次上传即可解决问题。