根据远程地址自动切换commit时候使用的用户名。比如一般都是使用下面nickname
提交,但如果待提交仓库包含ssh://[email protected]/**
这样的远程地址,则自动使用MY_NAME
进行commit
先找到.gitconfig文件位置
git config --origin --list
编辑.gitconfig
,增加includeIf
段的内容
.gitconfig
[user]
name = nickname
email = [email protected]
[credential]
helper = manager-core
[ssh]
variant = ssh
[core]
preloadindex = true
fscache = true
editor = vim
autocrlf = true
[gc]
auto = 256
[includeIf "hasconfig:remote.*.url:ssh://[email protected]/**"]
path = .gitconfig-company
在当前.gitconfig
同级目录下新建文件.gitconfig-company
,输入在公司使用的名字。
.gitconfig-company
[user]
name = MY_NAME
email = [email protected]
标签:Git,true,company,gitconfig,ssh,git,com,用户名,切换
From: https://www.cnblogs.com/xiaojiluben/p/18070630