idea中git pull push需要反复输入密码

在使用idea开发的过程中,在终端terminal中git pull和git push时遇到一个问题,一个是

每次提交都需要输入用户名和密码,,从网上找了下解决方案,记录一下。

解决:

打开git终端,或者idea中的插件终端,输入命令:

    git config --global credential.helper store

只要输入一次密码。后面就不用在输入了

原文地址:https://www.cnblogs.com/wang-yaz/p/10450971.html