在编译器的 打开终端
输入这行代码就行了 再次提交新的代码的时候就需要登录新的账号了 注意 这个只是清除当前项目 的 git账户
javascript
git config --unset credential.helper
git config --unset credential.helper
这个命令是用于取消设置Git的凭据存储助手。
如果你之前设置了一个credential.helper,比如使用了git config credential.helper store
来存储凭据,那么你可以通过运行git config --unset credential.helper
来取消这个设置。
这个命令会从Git的配置文件中移除credential.helper设置,使得Git在下次需要凭据时重新询问用户名和密码。
注意,这个命令只会影响当前的仓库。如果你想要全局地取消所有仓库的凭据存储,你需要在全局配置中执行这个命令,即使用git config --global --unset credential.helper
。
如果你只是想查看当前的credential.helper设置,可以使用git config credential.helper
命令。
如果你想要删除保存的凭据,这个命令也很有用,因为它会取消设置credential.helper,使得下次需要凭据时,Git会要求用户重新输入。