Answers for "how to understand which user is logged in in git"

2

check logged in user git shell

git config -l
git config user.name
git config user.email
Posted by: Guest on April-22-2021
2

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
Posted by: Guest on February-11-2021

Code answers related to "how to understand which user is logged in in git"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language