赞
踩
1.用户名和邮箱地址的作用
用户名和邮箱地址是本地git客户端的一个变量
每次commit都会用用户名和邮箱纪录。
github的contributions统计就是按邮箱来统计的。
2.查看用户名和邮箱地址
- $ git config user.name
-
- $ git config user.email
-
3.修改用户名和邮箱地址
- $ git config --global user.name "username"
-
- $ git config --global user.email "email"
-
4.查看配置文件的位置
位置1:/etc/gitconfig
系统级别的配置,适用于所有的用户和所有的库,可以使用 $git config --system 来指定和修改,存储在Git安装目录下
位置2:~/.gitconfig
用户级别的配置,适用于当前登录的用户,可以使用$git config --gloabal来指定和修改,存储在C:\Documents and Settings\$USER下
位置3:.git/config
库级别的配置,适用于某个具体的库,可以使用$git config来指定和修改,存储在具体的库隐藏的.git文件夹下
库级别的配置,适用于某个具体的库,可以使用$git config来指定和修改,存储在具体的库隐藏的
.git文件夹下
查看:
- git config user.name
-
- git config user.email
修改:
- git config user.name "username"
-
- git config user.email "email"
说明:Git会优先使用库级别的配置,再然后是global级别的配置,最后是system级别的配置.
参考文档
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。