What does the command git config do?

What does the command git config do?

Hey Richard,

The git config command is a convenient way to set configuration options for defining the behaviour of the repository, user information and preferences, git installation-based configurations, and many such things.

For example: To set up your name and email address before using git commands, we can run the below commands:

git config --global user.name “<<your_name>>”

git config --global user.email “<<your_email>>