1、下载Git:https://git-scm.com/download/win/
安装时如果没有特殊要求,直接选择默认安装即可(安装路径可以不使用默认的C盘)
2、检查,打开控制面板(win+R输入cmd),查看git版本的信息:git --version
3、配置git
在电脑的任意位置鼠标右键点击:git bash 跳出界面后输入
$ git config --global user.name 用户名(签名的用户)
$ git config --global user.email 邮箱@163.com(设置对应用户的邮箱)
此处设置的用户签名主要是每个版本提交信息中查看区分不同作者。这里设置的签名和登录gitHub(或其他代码托管中心)的账号没有任何关系。
A、查看配置是否成功
进入目录查看.gitconfig文件(C:\Users\{yourself})
也可以在文件中直接修改name和email
B、命令行查看
git config user.name
git config user.email
标签:git,name,查看,--,安装,配置,user,config From: https://www.cnblogs.com/rensonghua/p/17427400.html