0%

VSCode中git设置保存密码

步骤

在终端中执行

1
git config --global credential.helper store

然后重新打开VSCode

注意

这样配置的话,会在用户目录下生成.git-credentials文件,明文保存账号密码。
PS: 用户目录(Windows: C:/User/UserName,Linux: ~

关闭

编辑.gitconfig,删除以下内容

1
2
[credential]
helper = store

参考

vscode git提交总让输入用户名及密码