使用GitHub access token

前一段时间有收到邮件说github安全认证等级要提升,但是我个人没有当回事,今天突然发现不能使用git 提交了,才看到如下内容:
在这里插入图片描述

详细到网页看了下,需要申请personal access token

创建token

使用GitHub access token_第1张图片
使用GitHub access token_第2张图片
使用GitHub access token_第3张图片
使用GitHub access token_第4张图片
使用GitHub access token_第5张图片
使用GitHub access token_第6张图片

命令行使用

 git clone https://github.com/username/repo.git
Username: your_username
Password: your_token

实际上就是记住上面创建的token,然后再这里使用pull push等git命令的时候在password中填上token,而不是密码就行。
使用GitHub access token_第7张图片

参考:

  • https://github.blog/2020-12-15-token-authentication-requirements-for-git-operations/
  • https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls

你可能感兴趣的:(总结)