1.git下载后进行配置
git config --list:查看全部git配置信息。
2.修改用户名和邮箱
git config --global user.name "username"
git config --global user.email "[email protected]"
--global表示全局变量,配置于当前用户,当前用户下的仓库全部有效,不加表示局部变量,仅对当前仓库有效。
标签:username,初始化,git,--,global,user,config From: https://www.cnblogs.com/qingfeng515/p/17474683.html