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