“Проверьте git username” Ответ

git list пользователь и электронная почта

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

git username

$ git config --global user.name
> "John Smith"

$ git config --global user.email 
> "johnsmith@example.com"

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

Получите git имя пользователя и электронную почту

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

Установить имя пользователя git

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

Как проверить текущего пользователя GIT

To know the username, type:

git config user.name

To know the email, type:

git config user.email
Angry Anteater

Проверьте git username

Just use --local instead of --global. In fact, local is the default so you can just do

git config --local user.email personal@example.org
git config --local user.name "whatf hobbyist"

in one repo, and

git config --local user.email work@example.com
git config --local user.name "whatf at work"

in another
Lazy Lizard

Ответы похожие на “Проверьте git username”

Вопросы похожие на “Проверьте git username”

Больше похожих ответов на “Проверьте git username” по Shell/Bash

Смотреть популярные ответы по языку

Смотреть другие языки программирования