Home Git配置用户名和邮箱
Post
Cancel

Git配置用户名和邮箱

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 设置全局用户名和邮箱
git config --global user.name '张三'
git config --global user.email 'zhangsan@email.com'
# 查看当前配置
git config --global user.name
git config --global user.email

# 针对某个项目单独设置用户名和邮箱
# 进入到该项目的.git目录,执行如下命令
git config --local user.name '张三'
git config --local user.email 'zhangsan@email.com'

# 删除全局的用户和邮箱
git config --global --unset user.name
git config --global --unset user.email

# 删除某个项目中的用户名和邮箱
# 进入到该项目的.git目录,执行如下命令
git config --local --unset user.name
git config --local --unset user.email
This post is licensed under CC BY 4.0 by the author.