How do I show my global Git configuration?
One important thing about git config: git config has –local, –global and –system levels and corresponding files. So you may use git config –local, git config –global and git config –system. By default, git config will write to a local level if no configuration option is passed. Local configuration values are stored in a file…
