Git记住/清除用户和密码


每次git pull的时候都会让输入用户名和密码

git config --global credential.helper store


缓存输入的用户名和密码

git config --global credential.helper wincred


清除掉缓存在git中的用户名和密码

git credential-manager uninstall

原文地址:https://www.cnblogs.com/haolb123/p/14954126.html