使用 Visual Studio 时如何防止 BitBucket 凭据存储在 Windows 凭据管理器中?

How to prevent BitBucket credentials getting stored in Windows Credential Manager when using Visual Studio?

使用 Visual Studio 时,我无法阻止我的 BitBucket 凭据存储在 Windows 凭据管理器中。

我已使用所有三个命令取消设置 credential.helper

git config --global --unset credential.helper
git config --system --unset credential.helper
git config --unset credential.helper

有趣的是,在 运行 上述命令之后 credential.helper 设置仍然在 Visual Studio 存储库设置中显示 manager

我什至尝试在 Windows 服务中禁用凭据管理器,但这一切都阻止我打开凭据管理器。凭据仍在存储中!

我还尝试将 credential.helper 设置为 cache --timeout=600,希望凭据会在 10 分钟后被遗忘。但凭据仍会存储,并在 10 分钟后记住。

找不到方法,所以现在我只用 Git Bash 代替。

我需要这样做,因为我使用的是共享虚拟机,不能在那里存储我的个人凭据。