标签:问题解决 信息 避免 oba 形式 用户 否则 store global
“store” 模式会将凭证用明文的形式存放在磁盘中,并且永不过期。 这意味着除非你修改了你在 Git 服务器上的密码,否则你永远不需要再次输入你的凭证信息。 这种方式的缺点是你的密码是用明文的方式存放在你的 home 目录下。
执行命令:
git config --global credential.helper store
git pull
输入你的用户名和密码store模式会存储
查看系统存储的用户名个密码
cat ~/.git-credentials
标签:问题解决 信息 避免 oba 形式 用户 否则 store global
原文地址:https://www.cnblogs.com/starfish29/p/11140573.html