赞
踩
git配置本地用户名和邮箱
1.作用:用户每次用git提交代码时都会默认使用记录的用户名和邮箱。
2.git设置用户名和邮箱的命令
git config --global user.name “xxx”
git config --global user.email xxx@company.com
3.查看用户名和邮箱
git config user.name
git config user.email
4.查看其他配置信息(git设置列表)
git config --list
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。