在 Git 中如何配置用户信息

开发 前端
配置分为全局配置(global)和本地配置(local)。全局配置影响所有的 Git 仓库,本地配置只影响它所在的 Git 仓库,并可以覆盖全局的配置。

大家好,我是前端西瓜哥。

最近买了台新的笔记本,重新装了一些软件,这次就说说怎么在 git 中配置用户信息吧。

当我们安装了 git 后,一件非常重要的事情就是配置我们的用户名和邮箱地址,因为我们提交代码到远端服务器需要通过它们来得知提交者是谁。

查看配置列表

在配置用户信息前,我们需要确定自己是否已配置了用户信息。

我们先查看所有的配置:

git config --list

如果在一个 git 仓库下输入这个命令,你会得到类似下面的内容:

credential.helper=osxkeychain
core.repositoryformatversion=0
core.filemode=true
core.bare=false
core.logallrefupdates=true
core.ignorecase=true
core.precomposeunicode=true
remote.origin.url=git@github.com:F-star/svg-editor.git
remote.origin.fetch=+refs/heads/*:refs/remotes/origin/*
branch.main.remote=origin
branch.main.merge=refs/heads/main

配置分为全局配置(global)和本地配置(local)。全局配置影响所有的 git 仓库,本地配置只影响它所在的 git 仓库,并可以覆盖全局的配置。

上面的内容中,除了第一行来自全局配置,其他配置都是来自该 git 仓库,具体配置文件位置在 ​​.git/config​

[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
ignorecase = true
precomposeunicode = true
[remote "origin"]
url = git@github.com:F-star/svg-editor.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main

全局配置来自当前用户家目录下的 .gitconfig 文件,即 ​​~/.gitconfig​​。

用编辑器(通常是 vim)打开配置文件的命令如下:

# 打开全局配置
git config --global --edit
# 打开当前 git 仓库配置
git config --edit

(希望你至少知道该如何退出 vim,祝福)。

查看指定配置

上面列表内容有点多,我们可以只看需要的用户信息配置。

查看配置的用户的 用户名/邮箱地址:

git config user.name
git config user.email

命令会先找 git 仓库里的配置,找不到再找全局配置。如果什么都没输出,说明你没有配置。

你也可以指定配置的作用域为 local 还是 global:

# 本地
git config --local user.email
# 全局
git config --global user.email

如果都没有,就要去配置了。

配置用户信息

配置全局的用户信息:

git config --global user.name "前端西瓜哥"
git config --global user.email "work-email@gmail.com"

双引号可加可不加,如果值中间有空格符,就要加上。

如果你想配置当前项目的用户信息,将 --global 去掉即可,或者也可以改成 --local。

git config user.email "person-email@gmail.com"

这在你用公司的电脑折腾自己的个人项目很有用,毕竟你也不希望自己的个人项目的 commit 提交显示的是公司邮箱。

删除配置

当不需要一个配置时,我们可以使用 --unset 配置项。也可以直接改配置文件。

# 本地
git config --unset user.email
# 全局
git config --global --unset user.email

结尾

你学会了吗?

责任编辑:姜华 来源: 前端西瓜哥
相关推荐

2011-08-02 11:07:00

2014-08-27 11:22:46

LinuxSFTP

2017-07-26 10:58:26

GitFeatureGit Flow

2023-12-21 07:06:32

Go编写HTML

2011-07-14 08:56:34

Sql Server

2022-06-27 09:00:55

SwiftGit Hooks

2022-10-27 09:34:06

git撤销

2010-04-23 17:28:19

Aix 用户

2014-06-20 14:47:08

2022-04-28 09:02:55

Gitcommitlint配置

2009-09-07 09:20:34

2019-07-29 10:56:32

Linuxuseradd命令创建用户账号

2018-06-20 09:39:47

Oracle存储配置

2022-10-11 16:53:22

GitLinux

2021-01-05 14:24:44

Windows 10Windows微软

2019-11-22 10:00:53

ICC配置文件Windows 10

2013-05-14 09:27:13

垃圾邮件LinuxSendmail

2021-03-15 13:05:13

LinuxNautilusGit

2021-10-08 11:51:18

Twitchimageboard数据泄露

2020-11-12 06:20:25

GitGit配置GitHub
点赞
收藏

51CTO技术栈公众号