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

时间:2021-02-01 03:27:25

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]