Horje
How to check my git username Code Example
git list user and email
git config --global --get user.name
git config --global --get user.email
get git username and email
git config user.name
git config user.email
how to check the current git user
To know the username, type:

git config user.name

To know the email, type:

git config user.email
how to get git username and password
$ git config --global user.name "Mona Lisa"
$ git config --global user.name
$ mona
How to check my git username
git config user.name
check 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




Shell

Related
github see the username Code Example github see the username Code Example
How can you only see the first 14 lines of a file?- answer Code Example How can you only see the first 14 lines of a file?- answer Code Example
start redis server Code Example start redis server Code Example
linux lien symbolique Code Example linux lien symbolique Code Example
only show first lines linux Code Example only show first lines linux Code Example

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