1、git安装
官网:https://git-scm.com/
官网看操作手册:https://git-scm.com/book/zh/v2
2、git最低配置
git --version
#查版本git version 2.33.1.windows.1
git config --local --list #针对该仓库
git config --global --list #只针对当前用户 查看对应的配置
git config --system --list #包含系统上每一个用户及他们仓库的通用配置 (几乎不用)
#配置用户名、用户邮箱
$ git config --global user.name "yanxl"
$ git config --global user.email '钉钉邮箱'
我本地还有一个非常详细的安装配置说明文档
标签:git,配置,--,global,list,笔记,ing,config From: https://www.cnblogs.com/ling7/p/16616114.html