标签:global 指令 username list 常用 git push 用户 用户名 信息
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]
标签:global 指令 username list 常用 git push 用户 用户名 信息
原文地址:http://www.cnblogs.com/imnzq/p/7201843.html