1. 首页
  2. 软件工具

让Git记住账号密码与重置账号密码

让git记住账号和密码的方法

在git bash 中执行命令:

git config --global credential.helper store

输入一次账号密码就可以保存,下次不再提示。

重置验证设置

git 提示fatal: Authentication failed for…又不弹出用户名和密码的解决办法:

git config --system --unset credential.helper

TOP