剑未佩妥,出门已是江湖。
The Sword Unsheathed, Venture Begins: Into the Realm of Rivers and Lakes.

git配置、gitconfig配置文件

 Last edited7/27/2024
type
Post
status
Published
slug
git/02
summary
git配置、gitconfig配置文件
tags
Git
category
分享
password

命令行配置

# 查询全局用户名 git config --global user.name # 修改全局用户名 git config --global user.name [name] git config --global user.email git config --global user.email [youEmail@example.com] # 查询当前项目用户名 git config user.name # 修改当前项目用户名 git config user.name [name]

多用户配置

~/.gitconfig👇🏻
[init] defaultBranch = main [alias] b = branch # 工作项目配置 [includeIf "gitdir:~/developer/abc/"] path=~/developer/abc/.gitconfig
 
~/developer/abc/.gitconfig👇🏻
[user] name=jack email=jack@abc.com

🔗 参考文章