Usuário do Git Lista e e -mail
git config --global --get user.name
git config --global --get user.email
garzj
git config --global --get user.name
git config --global --get user.email
git config user.name
git config user.email
To know the username, type:
git config user.name
To know the email, type:
git config user.email
# show your Git username
git config --list
#an other way
`/.gitconfig
git config user.name
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