“Verifique o nome de usuário Git” Respostas de código

Usuário do Git Lista e e -mail

git config --global --get user.name
git config --global --get user.email
garzj

Git Nome de usuário

$ git config --global user.name
> "John Smith"

$ git config --global user.email 
> "[email protected]"

if you have configured multiple git users in your machine
$ git config --global user.name ### It will give name of git user who is globaly scoped
$ git config user.name ### It will give name of git user who has scope with respect to current repository
Outstanding Osprey

Obtenha nome de usuário e e -mail do Git

git config user.name
git config user.email
Zany Zebra

Defina o nome de usuário Git

git config --global user.name "My Name"
Tremendous Enceladus

Como verificar o usuário do Git atual

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Verifique o nome de usuário Git

Just use --local instead of --global. In fact, local is the default so you can just do

git config --local user.email [email protected]
git config --local user.name "whatf hobbyist"

in one repo, and

git config --local user.email [email protected]
git config --local user.name "whatf at work"

in another
Lazy Lizard

Respostas semelhantes a “Verifique o nome de usuário Git”

Perguntas semelhantes a “Verifique o nome de usuário Git”

Mais respostas relacionadas para “Verifique o nome de usuário Git” em Shell/Bash

Procure respostas de código populares por idioma

Procurar outros idiomas de código