Is there a way to get the name of the user, given only their username?
Something like this output git show (I know this doesn\'t work)<
git show
Add my two cents, if you're using windows commnad line:
git config --list | findstr user.name will give username directly.
git config --list | findstr user.name
The findstr here is quite similar to grep in linux.
findstr
grep