how to run git config code example
Example 1: git config list
git config --global --list
Example 2: git user config
$ git config --local user.name "John Doe"
$ git config --local user.email [email protected]
git config --global --list
$ git config --local user.name "John Doe"
$ git config --local user.email [email protected]