“Periksa nama pengguna Git” Kode Jawaban

Daftar git pengguna dan email

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

Nama pengguna 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

Dapatkan nama pengguna dan email Git

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

Atur nama pengguna git

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

cara memeriksa pengguna git saat ini

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Periksa nama pengguna 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

Jawaban yang mirip dengan “Periksa nama pengguna Git”

Pertanyaan yang mirip dengan “Periksa nama pengguna Git”

Lebih banyak jawaban terkait untuk “Periksa nama pengguna Git” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya