Git配置之邮箱设置
# 查看信息:
查看用户名:
git config user.name
1
查看邮箱:
git config user.email
1
查看密码:
git config user.password
1
# 设置信息
(1) --local: 本地设置(仅对当前仓库有效)
git config --local user.name “你的名称”
git config --local user.email “你的邮箱”
git config --local user.password “xxxxx密码”
1
2
3
2
3
(2) --global 全局设置(对当前用户的所有仓库有效)
git config --global user.name “你的名称”
git config --global user.email “你的邮箱”
git config --global user.password “xxxxx密码”
1
2
3
2
3
# 查看配置
使用
git config --list
1
查看已配置的git
账户信息
# 配置文件
[core]
repositoryformatversion = 0
filemode = false
bare = false
logallrefupdates = true
symlinks = false
ignorecase = true
[remote "origin"]
url = http://name:password@xxx.com/text.git
fetch = +refs/heads/*:refs/remotes/origin/*
[branch "main"]
remote = origin
merge = refs/heads/main
[user]
name = xxx
email = xxx@163.com
password = xxxxxx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
上次更新: 2024/02/20, 17:31:36
- 02
- Node与GLIBC_2.27不兼容解决方案08-19
- 03
- Git清空本地文件跟踪缓存08-13