2021-08-13之后 Github新安全提交措施处理

往GitHub仓库 push 代码时,一直报如下错误

1
2
3
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/<user>/<repo>/': The requested URL returned error: 403

原来在2021年8月13日之后,如果你还用账户密码来操作 Github 上的仓库,就会收到以上警告

现在提交GitHub仓库代码必须使用个人访问令牌(personal access token),就是把你的密码替换成token

至于为什么要改成使用token,肯定是为了安全角度考虑,具体说明参考官网文档https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations

获取Token步骤

  1. 在个人设置页面找到Settings

  2. 选择开发者设置Developer setting

  3. 选择个人访问令牌Personal access tokens,然后选中生成令牌「Generate new token」

  4. 设置token的有效期,访问权限等

    • 选择要授予此令牌token的范围或权限
    • 要使用token从命令行访问仓库,请选择repo
    • 要使用token从命令行删除仓库,请选择delete_repo
    • 其他根据需要进行勾选
  5. 生成令牌 「Generate token」

注意:记得把你的token保存下来,因为你再次刷新网页的时候,你已经没有办法看到它了。

  1. 之后用自己生成的token登录,把上面生成的token粘贴到输入密码的位置,然后成功push代码

也可以 把token直接添加远程仓库链接中,这样就可以避免同一个仓库每次提交代码都要输入token了:

1
git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git

<your_token>:换成你自己得到的token
<USERNAME>:是你自己github的用户名
<REPO>:是你的仓库名称

例如:

1
git remote set-url origin https://ghp_xxxxxxx@github.com/username/pero.git

这样再使用终端 git push 就成功啦

坚持原创技术分享,您的支持将鼓励我继续创作!
0%