Windows密码已更改,无法再使用Git.控制面板中没有凭据管理器



基本上,标题是怎么说的。我需要更改我的Windows密码,现在我在尝试使用gitclone:时遇到身份验证错误

fatal: Authentication failed for '<git repo here>'

到目前为止,我已经尝试了以下几种:

git config --global --add user.password "password here"
git config --global --unset user.password
git config --global credential.helper wincred

没有明显的变化。我还尝试过重新启动git-bash、Intellij和我的计算机。我的大部分搜索都归结为"在控制面板中使用凭据管理器",但我的本地机器上似乎没有。

运行以下命令在全局级别上设置配置。

git config --global credential.helper manager

最新更新