How do I show my global Git configuration? Git · August 26, 2021 You can use: git config --list or look at your ~/.gitconfig file. The local configuration will be in your repository’s .git/config file. Use: git config --list --show-origin to see where that setting is defined (global, user, repo, etc…)
Leave a Reply