Git Check Config Settings
Check a Single Setting
bash
$git config <key>List All the Settings
bash
$git config --listList the Settings and Their Origin
List all the settings and show where they’re set:
bash
$git config --list --show-originList the Settings and Their Origin and Scope
List all the settings with their origin and scope (eg: global, local, system):
bash
$git config --list --show-origin --show-scopeMore info: git config docs