“Vérifiez le nom d'utilisateur GIT” Réponses codées

Liste GIT Utilisateur et e-mail

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

nom d'utilisateur git

$ 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

Obtenez le nom d'utilisateur et le courriel GIT

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

Définir le nom d'utilisateur GIT

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

Comment vérifier l'utilisateur GIT actuel

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Vérifiez le nom d'utilisateur 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

Réponses similaires à “Vérifiez le nom d'utilisateur GIT”

Questions similaires à “Vérifiez le nom d'utilisateur GIT”

Plus de réponses similaires à “Vérifiez le nom d'utilisateur GIT” dans Shell/Bash

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code