当前位置:   article > 正文

git出现remote: Support for password authentication was removed on August 13, 2021. Please use a person_git clone remote: support for password authenticat

git clone remote: support for password authentication was removed

大概意思就是,你原先的密码凭证从2021年8月13日开始就不能用了,必须使用个人访问令牌(personal access token),就是把你的密码替换成token!

如何生成token

1,打开Github,在个人设置页面,找到【Setting】,然后打开找到【Devloper Settting】,如下图。

 

image.png

然后,选择个人访问令牌【Personal access tokens】,然后选中生成令牌【Generate new token】。

image.png

在上个步骤中,选择要授予此令牌token的范围或权限。

要使用token从命令行访问仓库,请选择repo
要使用token从命令行删除仓库,请选择delete_repo
其他根据需要进行勾选
然后,点击【Generate token】生成令牌。

生成token后,记得把你的token保存下来,以便进行后面的操作。把token直接添加远程仓库链接中,这样就可以避免同一个仓库每次提交代码都要输入token了。

git remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git
<your_token>:换成你自己得到的token
<USERNAME>:是你自己github的用户名
<REPO>:是你的仓库名称
下面是一个示列:

git remote set-url origin https://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@github.com/shliang0603/

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/喵喵爱编程/article/detail/741874
推荐阅读
相关标签
  

闽ICP备14008679号