SyntaxFix
Write A Post
Hire A Developer
Questions
Add my two cents here. If you want to get user.name or user.email only without verbose output.
On liunx, type git config --list | grep user.name.
git config --list | grep user.name
On windows, type git config --list | findstr user.name.
git config --list | findstr user.name
This will give you user.name only.