本系列汇总,请查看这里:https://www.cnblogs.com/uncleyong/p/10854115.html
安装Git
只有Windows系统需要手动安装Git软件, Linux和Mac OS系统都自带Git(如果linux下想自己安装,参考:https://www.cnblogs.com/uncleyong/p/10767747.html)
官网下载:https://git-scm.com/downloads
安装:一路下一步默认安装即可
安装后,右键可以看到:
Git GUI Here是Git图形化客户端,这个很少用,哪怕有其它Git客户端,建议学习阶段还是用命令进行操作,因为命令会了,一个简单的图形界面客户端是很easy的事儿
Git Bash Here是Git命令行工具
安装后验证:git --version,查看版本
初始化配置
对Git进行初始化配置,定义当前系统Git的使用者名称和邮箱,也就是提交代码时显示的名字和邮箱
说明:
用户名和邮箱地址是本地git客户端的一个变量,不随git库而改变
每次commit都会用用户名和邮箱纪录
github的contributions统计就是按邮箱来统计的
命令:
--global 表示当前电脑上所有的Git仓库都会使用这个配置
git config --global user.name "username" git config --global user.email "email"
例如:
git config --global user.name "韧" git config --global user.email "[email protected]"
查看用户名和邮箱地址
git config user.name git config user.email
也可以对某个仓库指定不同的用户名和Email地址
进入要修改的仓库根目录,执行如下命令(不加--global):
git config user.name "username" git config user.email "email"
例如:
git config user.name "韧666" git config user.email "[email protected]"
查看配置信息
git config --list git config -l
生效配置
其它项目仍然是应用的全局配置
标签:02,Git,必知,--,git,user,config,email From: https://www.cnblogs.com/uncleyong/p/17964820