windows check github config code example
Example 1: git config
git config --global user.name "John Doe"
git config --global user.email johndoe@example.com
Example 2: git setup local user
git config user.name "Your Name Here"
git config user.email your@email.com
Or Global
git config --global user.name "Your Name Here"
git config --global user.email your@email.com