如何删除credential.helper=wincred
时间: 2023-03-24 14:02:36 浏览: 263
您可以通过以下命令在 Git 中删除 credential.helper=wincred:
git config --unset credential.helper
这将从您的 Git 配置中删除 credential.helper=wincred。
相关问题
credential.helper=wincred
这是 Git 的一个配置选项,用于在 Windows 系统中保存 Git 凭据。可以通过在命令行中输入 "git config --global credential.helper wincred" 来启用它。
'config--global' is not a git command. See 'git --help
这个错误信息可能是因为输入了不正确的命令或者参数导致的。在引用中提到的解决方案是通过运行命令 `git config --global credential.helper wincred` 来解决。`config` 是 git 的一个命令,`--global` 是 config 命令的一个参数,它表示全局配置。所以 `config--global` 不是一个有效的 git 命令。你可以尝试运行 `git --help` 命令来查看 git 命令的帮助文档,以获取更多关于 git 命令和参数的信息。
阅读全文