问题
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: Authentication failed for 'https://github.com/Rodert/liawan.git/'
重点
简单来说就是,把密码换成 token 。官方说【点击】
步骤
如何生成自己的token
1、在个人设置页面,找到Setting(参考:点击)
2、选择开发者设置Developer setting
3、选择个人访问令牌Personal access tokens,然后选中生成令牌Generate new token
4、设置token的有效期,访问权限等
选择要授予此令牌token的范围或权限。(全选就行
)
要使用token从命令行访问仓库,请选择repo。
要使用token从命令行删除仓库,请选择delete_repo
其他根据需要进行勾选
5、生成令牌Generate token
如下是生成的token
注意:
记得把你的token保存下来,因为你再次刷新网页的时候,你已经没有办法看到它了,所以我还没有彻底搞清楚这个token的使用,后续还会继续探索!
使用
$ git clone https://github.com/username/repo.git Username: your_username Password: your_token