Git的安装

1. 安装

到git官方安装https://git-scm.com/downloads

检查安装是否完成

右键,选择git bash here

打开git的命令行窗口

输入git --version

如果出现版本号则安装完成

2. 配置git 

按照user.name    user.email

配置自己的用户名和账号

可以输入git config list查看自己已配置的列表

原文地址:https://www.cnblogs.com/laoduancode/p/13238216.html