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
On Linux-based systems you can view/edit a configuration file by
vi/vim/nano .git/config
Make sure you are inside the Git init folder.
If you want to work with --global config, it's
--global config
vi/vim/nano .gitconfig
on /home/userName
This should help with editing: https://help.github.com/categories/setup/