0 votes
in Git by
When is the git config command used?

1 Answer

0 votes
by

The git config command is used to set configuration options for your Git installation.

For example, after you download Git, you need to use below the config commands to setup username and commit email address in Git respectively:

$ git config –global user.name “<username>”

$ git config –global user.email “<email id>”

So, mainly, things like the behavior of the repository, user information and preferences can be set up with the help of this command.

Related questions

0 votes
asked Oct 16, 2019 in Git by rajeshsharma
0 votes
asked Feb 13, 2022 in Git by rajeshsharma
...