清除缓存
清除缓存的账号密码等信息,下次 git push 或 git pull 的时候需要重新输入账号密码
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper
避免每次都输用户名和密码
git config --global credential.helper store
标签:credential,git,helper,--,知识,相关,config,unset
From: https://www.cnblogs.com/beihangxuwei/p/17243513.html