赞
踩
使用Git提交代码到github一直出现问题:fatal: Authentication failed for 删除了Windows凭据也不管用,这才注意到还有一个错误提示:remote: Support for password authentication was removed on August 解决办法如下:
问题:remote: Support for password authentication was removed on August 13, 2021. Please use a personal access token instead.
大概意思就是你原先的密码凭证从2021年8月13日
开始就不能用了,必须使用个人访问令牌(personal access token)
,就是把你的密码
替换成token
!
令牌(token)与基于密码的身份验证相比,令牌提供了许多安全优势:
唯一: 令牌特定于 github,可以按使用或按设备生成;
可撤销:可以随时单独撤销令牌,而无需更新未受影响的凭据;
有限 : 令牌可以缩小范围以仅允许用例所需的访问;
随机:令牌不需要记住或定期输入的更简单密码可能会受到的字典类型或蛮力尝试的影响。
登录自己的github账号,个人设置那里
Developer setting
Personal access tokens
,然后选中生成令牌 Generate new token
选择要授予此令牌token
的范围
或权限
。
token
从命令行访问仓库,请选择repo
。token
从命令行删除仓库,请选择delete_repo
Generate token
注意:
记得把你的token保存下来,因为你再次刷新网页的时候,你已经没有办法看到它了,所以我还没有彻底搞清楚这个token
的使用,后续还会继续探索!
之后用自己生成的token
登录,把上面生成的token
粘贴到输入密码的位置
,然后成功push代码!
也可以 把token直接添加远程仓库链接中,这样就可以避免同一个仓库每次提交代码都要输入token了:
git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git
<your_token>:换成你自己得到的token
<USERNAME>:是你自己github的用户名
<REPO>:是你的仓库名称
例如:(全局设置某一个仓库的 token)以后每次提交都不需要账户和密码了
git remote set-url origin https://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@github.com/github的用户名/仓库名称
最后提交 直接输入: git push
就不用输入账户和密码了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。