标签:基础 hub 本地 comm 地址 作用 code name conf
用户名和邮箱地址的作用
用户名和邮箱地址是本地git客户端的一个变量,不随git库而改变。
每次commit都会用用户名和邮箱纪录。
github的contributions统计就是按邮箱来统计的。
查看用户名和邮箱地址:
$ git config user.name
$ git config user.email
修改用户名和邮箱地址:
$ git config --global user.name "username"
$ git config --global user.email "email"
标签:基础 hub 本地 comm 地址 作用 code name conf
原文地址:http://www.cnblogs.com/shierban/p/7610857.html