-
git 安装后,每次git pull 都需要输入账户密码
-
只需配置git 存储账户密码,即可解决每次输入,这种安全性比较低
-
命令:
git config --global credential.helper store
-
再次拉取 git pull 输入一次账户密码,即可解决!
-
其他方案:

git 安装后,每次git pull 都需要输入账户密码
只需配置git 存储账户密码,即可解决每次输入,这种安全性比较低
命令:
git config --global credential.helper store
再次拉取 git pull 输入一次账户密码,即可解决!
其他方案:
