git操作及fatal: Authentication failed for错误解决

1、配置用户信息

git config --global user.name [username]

git config --global user.email [email]

 

2、查询用户信息

git config --list

3、如果push遇到在输入密码是熟错后,就会报这个错误fatal: Authentication failed for

解决办法:

git config --system --unset credential.helper

之后你在push就会提示输入名称和密码

相关文章:

  • 2021-07-14
  • 2021-12-19
  • 2021-10-30
  • 2022-12-23
  • 2022-12-23
  • 2021-10-09
  • 2022-01-14
猜你喜欢
  • 2021-06-01
  • 2022-01-10
  • 2021-11-08
  • 2021-04-02
相关资源
相似解决方案