“Überprüfen Sie den Git -Benutzernamen” Code-Antworten

Git List -List -Benutzer und E -Mail

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

Git Benutzername

$ 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

Holen Sie sich Git Benutzername und E -Mail

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

Setzen Sie den Benutzernamen Git

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

So überprüfen Sie den aktuellen Git -Benutzer

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Überprüfen Sie den Git -Benutzernamen

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

Ähnliche Antworten wie “Überprüfen Sie den Git -Benutzernamen”

Fragen ähnlich wie “Überprüfen Sie den Git -Benutzernamen”

Weitere verwandte Antworten zu “Überprüfen Sie den Git -Benutzernamen” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen