为Git仓库设置签名信息

前言

在首次使用git版本库或创建新的仓库时,需要为其仓库设定管理员和管理员邮箱。

在为仓库添加管理员和邮箱地址时,有以下两种情况:

(1)全局模式:首次创建,后面做为默认使用,对当前pc下的所有仓库有效。
(2)局部模式:创建仓库后添加,设定仅对当前仓库有效。

具体如下

一、设定仓库管理员信息

# 全局模式(用户级别)(一般在首次指定)
$ git config --global user.name "Your Name"
$ git config --global user.email "[email protected]"

# 局部模式(仓库级别)(初始化仓库后使用)
$ git config user.name "Your Name"
$ git config user.email "[email protected]"

信息保存位置:

  • 全局模式:~/.gitconfig 文件
  • 局部模式:.git/config 文件

二、查看当前仓库管理员信息

## 查看仓库当前设定用户信息
$ git config user.name
$ git config user.email

## 查看仓库全局(默认)设定用户信息
$ git config --global user.name
$ git config --global user.email

你可能感兴趣的:(Git,Git,版本控制,仓库)