Horje
view 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
github see the 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
view git username
# show your Git username
git config --list

#an other way
`/.gitconfig




Shell

Related
mover logs unraid Code Example mover logs unraid Code Example
Verify that the 'libvirtd' daemon is running Code Example Verify that the 'libvirtd' daemon is running Code Example
bash get result of function Code Example bash get result of function Code Example
command not found: strings Code Example command not found: strings Code Example
Check status service Apache FreeBSD Code Example Check status service Apache FreeBSD Code Example

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