git show config code example

Example 1: git user.name user.email

git config --global user.name "Your Name"
git config --global user.email "[email protected]"

Example 2: git list config

git config --list
# or
git config --global --list

Example 3: git config global

$ git config --global user.name "John Doe"
$ git config --global user.email [email protected]

Example 4: check git config

git config --list

Example 5: git config

$ git config --list --show-origin

Example 6: git config

Open the command line.
Set your username: git config --global user.name "FIRST_NAME LAST_NAME"
Set your email address: git config --global user.email "[email protected]"