Github基于令牌身份验证配置及使用

1、前言

从2021年8月31日起,Github不再支持通过密码进行身份验证,将要求使用基于令牌(token)的身份验证。
image

2、配置

第一步:
进入GIthub首页,点击头像,选择Settings
image

第2步:
点击Developer settings
image

第3步:
点击Personal access token
image

第4步:
点击Generate new token
image

第5步:
输入你的github密码
image

第6步:
填写信息,如下图:

image

第7步:
点击Generate token,生成token
image

注意:此时一定要复制保存下来,因为页面刷新后就不再显示了

至此,token的创建工作就做完了。

3、使用

第1种使用方式:
在命令行输入密码时输入该token
image

第2种使用方式:
git remote set-url <别名> https://<你的token>@github.com/<你的用户名>/<你的仓库名>.git
image

注意:
个人访问令牌只能用于 HTTPS Git 操作。 如果您的仓库使用 SSH 远程 URL,则需要将远程 URL 从 SSH 切换到 HTTPS,或配置SSH免密登录。

posted @ 2022-09-02 14:34  睡觉大王Risen  阅读(877)  评论(0编辑  收藏  举报