Git的一些必要设置

配置git的用户名和密码,应该是你安装完git后需要做的第一件事。

能避免很多麻烦

配置用户名

1
git config --global user.name "Your Name"

配置邮箱:

1
git config --global user.email "email@example.com"

保存密码

1
git config --global credential.helper store

查看git配置信息

1
git config --list