git 通过http链接clone工程时需要输入密码

clone之后再次 git pull都需要再次输入密码

解决方式,[参考](https://www.cnblogs.com/chenyishi/p/10943315.html):

在项目目录输入

shell
git config --global credential.helper store

之后 git pull一次,此时需要输入密码,输入的密码会被保存

再次操作git就不需要再次输入密码了