文档
https://git-scm.com/book/zh/v2
下载
mac
https://git-scm.com/download/mac
Linux
https://git-scm.com/download/linux
Windows
https://git-scm.com/download/win
安装
window下的安装步骤,之前写的一个博文
https://cloud.tencent.com/developer/article/2445166
官方文档上的安装教程
https://git-scm.com/book/zh/v2/起步-安装-Git
安装还是很简单的,所以不做过多说明吧,有问题的可以评论或者私信,邮箱通知后我会及时回复的
安装完成后可以打开终端查看安装版本
代码语言:javascript复制git --version
Git配置
安装完成后并不可以立即使用,需要进行一些全局的配置
博文中有提及但并没有很详细的说明
https://cloud.tencent.com/developer/article/2445166
官方文档上也有一些说明
https://git-scm.com/book/zh/v2/起步 - 初次运行 Git 前的配置
配置user信息
这个是必须的,这样做也有利于管理
代码语言:javascript复制git config [--local | --global | --system] user.name 'Your name'
git config [--local | --global | --system] user.email 'Your email'
local:区域为本仓库
global: 当前用户的所有仓库
system: 本系统的所有用户
优先级
local > global > system
一般设为global全局配置
现在假设我要配置一个全局的用户信息,用户名称wangyang,用户邮箱2752154874@qq.com
代码语言:javascript复制$ git config --global user.name 'wangyang'
$ git config --global user.email '2752154874@qq.com'
查看配置信息
查看所有的配置信息
代码语言:javascript复制$ git config --list
查看全局配置信息
代码语言:javascript复制$ git config --list --global
查看系统配置信息
查看仓库配置信息
这个需要先进入一个或者创建一个仓库才可查看,不然会报错提示你local参数只能被使用于一个git仓库
fatal: --local can only be used inside a git repository
进入或创建仓库后再使用该命令即可看到有关该仓库的配置信息
设置使用配置
代码语言:javascript复制$ git config --local
$ git config --global
$ git config --system
清除配置
代码语言:javascript复制$ git config --unset --local user.name
$ git config --unset --global user.name
$ git config --unset --system user.name