Horje
change git username and email Code Example
git user.name user.email
git config --global user.name "Your Name"
git config --global user.email "youremail@yourdomain.com"
Source: linuxize.com
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
change git username and email
$ git config --global user.name "John Doe"
$ git config --global user.email johndoe@example.com
Source: git-scm.com
get git username and email
git config user.name
git config user.email
set username git
git config --global user.name "My Name"
change git username and email
$ git config --global user.email "email@example.com"




Shell

Related
set git user name and user email Code Example set git user name and user email Code Example
git config username Code Example git config username Code Example
git config username and password Code Example git config username and password Code Example
change pycharm git global author Code Example change pycharm git global author Code Example
git config global Code Example git config global Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
19