“git username” Ответ

git user.name user.mail

git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"
RWL_Dittrich

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 --global user.email "my.adresse@hotmail.com"
git config --global user.name "My Name"
Worried Monkey

git config username

$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Tame Toad

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

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

git username

The command git config --list will list the settings. There you should also find user.name and user.email.
Distinct Dormouse

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

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

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

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

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