fatal: Authentication failed for ‘https://github.com

记录在本地电脑建立与GitHub连接时遇到的错误,附上解决方案!

git clone 遇到的错误

remote: Support for password authentication was removed on August 13, 2021.
remote: Please see https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls for information on currently recommended modes of authentication.
fatal: Authentication failed for ‘https://github.com/zhang8yiming/Data_Science.git/’

解决方案

原因: Github 把密码换成 Token

1. 生成自己的 Token,在个人设置页面,找到 Setting(参考)

fatal: Authentication failed for ‘https://github.com_第1张图片

2. 选择开发者设置 Developer setting

直接拉到最下面
fatal: Authentication failed for ‘https://github.com_第2张图片

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

fatal: Authentication failed for ‘https://github.com_第3张图片

4. 设置 Token 的有效期,访问权限等

选择要授予此令牌 Token 的范围或权限。

  • 要使用 Token从命令行访问仓库,请选择repo。
  • 要使用 Token从命令行删除仓库,请选择delete_repo
  • 其他根据需要进行勾选(除了上面两个,其他我都没有选~哈哈)
    fatal: Authentication failed for ‘https://github.com_第4张图片
    【图片来源参考文献[1]】

5. 生成令牌 Generate Token

fatal: Authentication failed for ‘https://github.com_第5张图片

以下是生成的 Token
fatal: Authentication failed for ‘https://github.com_第6张图片
【图片来源参考文献[1]】

记得把你的 token 保存下来,因为你再次刷新网页的时候,你已经没有办法看到它了,所以我还没有彻底搞清楚这个token的使用,后续还会继续探索
fatal: Authentication failed for ‘https://github.com_第7张图片

之后用自己生成的token登录,把上面生成的token粘贴到输入密码的位置,然后Git clone仓库!

fatal: Authentication failed for ‘https://github.com_第8张图片

感悟:我刚开始搜索的解决方案是邮箱和用户名跟github里设置的对应上,我也查看了,都对应上,如果你也遇到相关错误,可以提前先看一下用户名和邮箱。

参考文献
[1] https://blog.csdn.net/weixin_41010198/article/details/119698015

你可能感兴趣的:(工程能力,git,github)