check git config username code example
Example 1: git list user and email
git config --global --get user.name
git config --global --get user.email
Example 2: git config username
$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]
Example 3: git username
$ git config --global user.name
> "John Smith"
$ git config --global user.email
> "[email protected]"
if you have configured multiple git users in your machine
$ git config --global user.name
$ git config user.name
Example 4: git show username
git config --list
Example 5: git user config
$ git config --local user.name "John Doe"
$ git config --local user.email [email protected]
Example 6: How to check git config username?
git config user.name