码迷,mamicode.com
首页 > 其他好文 > 详细

git配置中出现多个重复名字:More than one value for the key user.name

时间:2018-07-21 00:11:52      阅读:533      评论:0      收藏:0      [点我收藏+]

标签:位置   lis   for   get   class   use   glob   value   conf   

 

#### 查看配置
```
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

标签:位置   lis   for   get   class   use   glob   value   conf   

原文地址:https://www.cnblogs.com/max520liuhu/p/9344609.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!