git命令行常用几个指令(细节问题)

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]

原文地址:https://www.cnblogs.com/imnzq/p/7201843.html