git push报错:fatal: Authentication failed for ‘https://github.com/...

第一次用git传代码到GitHub时,

填写用户名和密码出现报错:

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

试了下面的没用

git config -–global user.name "xxx"
git config --global user.email "[email protected]"

查看报错原因发现是因为git更新了认证方式

在错误提示(糟糕忘截图)的网站里有说明-->https://docs.github.com/en/get-started/getting-started-with-git/about-remote-repositories#cloning-with-https-urls

里面给出了操作提示:

git push报错:fatal: Authentication failed for ‘https://github.com/..._第1张图片

所以我们需要先创建个人访问令牌

步骤如下:

  1. 找到个人设置

git push报错:fatal: Authentication failed for ‘https://github.com/..._第2张图片
  1. 在个人设置页面左侧选项中,点最后一个开发者选项

git push报错:fatal: Authentication failed for ‘https://github.com/..._第3张图片
  1. 选择【Personal access tokens】-->【Tokens(classic)】

git push报错:fatal: Authentication failed for ‘https://github.com/..._第4张图片

4、【Generate new token】-->【Generate new token(classic)】

git push报错:fatal: Authentication failed for ‘https://github.com/..._第5张图片

5、会有一个身份验证,输入密码,然后生成个人访问令牌。

一定要存好,只能看见一次

git push报错:fatal: Authentication failed for ‘https://github.com/..._第6张图片

再进行终端操作

git push -u origin 分支名

接下来会让你输入用户名和密码

注意这里的密码填写刚刚获得的个人令牌

然后就可以啦!

git push报错:fatal: Authentication failed for ‘https://github.com/..._第7张图片

你可能感兴趣的:(Git,git,github)