GIT PUSH/PULL时总需要输入用户名密码的解决方案:
git config --global credential.helper store
查看当前的配置信息:
git config --system --list或者
git config --list
设置用户名和密码:
git config --global user.name [username]
git config --global user.email [email]