Git Global Config Tutorial

Git Global Config Tutorial

Git provides different configurations like username, email, preferred text editor, etc. These configurations can be set in different levels where they are used according to their levels. The Global Git Configuration is used globally where it affects all git repositories unless there is a local or repository-based configuration. In this tutorial, we examine how to … Read more

Display Git Configuration with “git config –list” Command

Display Git Configuration with "git config --list" Command

Git provides different configurations like user name, user email, editor, coloring, etc. These configurations can be also set in different modes called global, user, and local. The git config –list command is used to print all of these different types or levels of configurations in the command-line interface. List Git Configuration The current git configuration … Read more