“Изменить git userner and email” Ответ

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 userner and email

$ 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

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

Изменить git userner and email

$ git config --global user.email "email@example.com"
Disgusted Dugong

Ответы похожие на “Изменить git userner and email”

Вопросы похожие на “Изменить git userner and email”

Больше похожих ответов на “Изменить git userner and email” по Shell/Bash

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

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