git config --global user.name "[name]"
: Set your global username.
git config --global user.name "John Doe"
git config --global user.email "[email]"
: Set your global email.
git config --global user.email "[email protected]"
git config --list
: List all Git configurations to verify your settings.
git config --list
git config [key] [value]
: Set a specific configuration, like the default editor.
git config core.editor "code --wait"