当前位置:   article > 正文

git 问题 remote: Support for password authentication was removed on August 13, 2021.

remote: support for password authentication was removed on

问题:提交代码时发现以下错误:

remote: Support for password authentication was removed on August 13, 2021.

大概意思就是你原先的密码凭证从2021年8月13日开始就不能用了,必须使用个人访问令牌(personal access token),就是把你的密码替换成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 remote set-url origin https://<your_token>@github.com/<USERNAME>/<REPO>.git

  • <your_token>:换成你自己得到的token
  • <USERNAME>:是你自己github用户名
  • <REPO>:是你的仓库名称

其他问题:

设置提交大小:git config http.postBuffer 524288000

查看配置:git config -l

然后使用提交 git push  -u origin master
 

 

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

闽ICP备14008679号