git上clone的时候,输入用户名和密码第一遍输错以后,之后就无法再自动弹出输入用户名和密码的窗口

解决办法:

git config --system --unset credential.helper

此后又会重复让输入账号,密码,很烦,然后: 

git config --global credential.helper store

输入账号密码,下次就不会让重复输入了。

原文地址:https://www.cnblogs.com/panax/p/13453680.html