Doubt about repositories in Github

1

What happens is that when I upload the repository to github through the terminal at the time of entering the web to the repository my name appears twice, I have changed it with the following command:

$ git config --global user.name "Mr. Goding"

if the change is reflected but it appears twice as seen in the image, and in the repositories of other colleagues only its name comes out once, what do I have to do to appear once? I would appreciate it

    
asked by J. Torres 03.10.2018 в 19:53
source

1 answer

1

try with:

#obtener todos los nombres usuarios es key sensitive
git config --get-all user.name

#obtener el archivo de configuracion de los nombres de usuarios
git config -e
# y eliminas los que no quieres

or

#eliminar todos los nombres de usuarios
git config --global --unset-all user.name

#volver a configurar un usuario
git config --global user.name "Mr. Goding"

or

#remplazar todos los nombre de usuarios con una especifico 
git config --global --replace-all user.name "Mr. Goding"
    
answered by 03.10.2018 в 20:18