Horje
git username 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
add git user and email
git config --global user.email "my.adresse@hotmail.com"
git config --global user.name "My Name"
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
git config username
$ 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
git username
The command git config --list will list the settings. There you should also find user.name and user.email.




Shell

Related
conda install skimage Code Example conda install skimage Code Example
how to change java version in linux Code Example how to change java version in linux Code Example
remove oh my zsh ubuntu Code Example remove oh my zsh ubuntu Code Example
how to get my ip address mac terminal Code Example how to get my ip address mac terminal Code Example
find the parent branch of a git branch Code Example find the parent branch of a git branch Code Example

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