I\'d like to show all configured Git sections.
I only found git config --get core.editor, and I\'d like to output everything that\'s configured globally
git config --get core.editor
If you just want to list one part of the Git configuration, such as alias, core, remote, etc., you could just pipe the result through grep. Something like:
git config --global -l | grep core