“Sprawdź nazwę użytkownika git” Kod odpowiedzi

GIT List Użytkownik i e -mail

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

Git Nazwa użytkownika

$ 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

Uzyskaj nazwę użytkownika i e -mail

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

Ustaw git nazwy użytkownika

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

Jak sprawdzić obecny użytkownik GIT

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Sprawdź nazwę użytkownika 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

Odpowiedzi podobne do “Sprawdź nazwę użytkownika git”

Pytania podobne do “Sprawdź nazwę użytkownika git”

Więcej pokrewnych odpowiedzi na “Sprawdź nazwę użytkownika git” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu