git配置中出现多个重复名字:More than one value for the key user.name
Posted 神毓·逍遥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git配置中出现多个重复名字:More than one value for the key user.name相关的知识,希望对你有一定的参考价值。
#### 查看配置
```
git config --list
```
#### 查看所有的名称
```
git config --get-all user.name
```
#### 查看所有的配置
```
git config -l --show-origin
```
#### 判断出现多值的位置 local global system
```
it config --get-all user.name #local repo git config file)
git config --global --get-all user.name #user config file)
git config --system --get-all user.name #system git config file)
```
#### 将出现多值区域的值替换
```
git config [--local/--global/--system] --replace-all key value
```
参考网址(需要梯子):
https://stackoverflow.com/questions/4310974/more-than-one-value-for-the-key-user-name-git
有不懂的可以加微信:invictus090,备注“博客园”
以上是关于git配置中出现多个重复名字:More than one value for the key user.name的主要内容,如果未能解决你的问题,请参考以下文章
Android异常篇 More than one file was found with OS independent path ‘xxx/xxx‘
result returns more than one elements此种错误,解决
[git]-Failed with error: dst refspec 1.9.3-20100630 matches more than one.
git push提示dst refspec XXX matches more than one