2.Git基本配置
Posted asea123
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了2.Git基本配置相关的知识,希望对你有一定的参考价值。
用户名和邮箱地址是本地git客户端的一个变量 . 用户每次提交代码都会记录用户名和邮箱 .
设置git的用户和邮箱
git config [--local | --global | --system] user.name ‘Your name‘ 注意这里user.name后边是空格,不是等号=。
git config [--local | --global | --system] user.email ‘Your email‘
## 查看配置
git config --list [--local | --global | --system]
## 区别
local:区域为本仓库
global: 当前用户的所有仓库
system: 本系统的所有用户
以上是关于2.Git基本配置的主要内容,如果未能解决你的问题,请参考以下文章