Master Git configuration to boost your productivity. Learn about config levels, useful settings, powerful aliases, and customizations that professional developers use daily.
See all your current Git settings and where they come from.
git config --list
git config --list --show-origin
The first command lists all configuration values. The `--show-origin` flag shows which file each setting comes from. Git configuration is hierarchical with three levels.
List of all Git config values, including user.name, user.email, and many defaults. With --show-origin you see file paths.