“Git Obtenha nome de usuário” 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

Adicionar usuário Git e e -mail

git config --global user.email "[email protected]"
git config --global user.name "My Name"
Worried Monkey

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

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

Veja o nome de usuário Git

# show your Git username
git config --list

#an other way
`/.gitconfig
bilalahmed_dev

Git Obtenha nome de usuário

git config user.name
Combative Caracal

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 “Git Obtenha nome de usuário”

Perguntas semelhantes a “Git Obtenha nome de usuário”

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

Procure respostas de código populares por idioma

Procurar outros idiomas de código