我跑了:
$ git config credential.helper store
接着:$ git push origin master
推送后,我输入了我的凭据并保存了它们。我读到它们以明文形式存储,所以现在我想删除我的凭据,使其不被默认保存和输入。
我怎样才能做到这一点?
最佳答案
在终端中运行以下命令以删除存储在缓存中的凭据
git config --global --unset credential.helper
关于linux - 如何从 Git 中删除缓存的凭据?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44246876/