in Technology by

 When is the git config command used?

Please log in or register to answer this question.

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 “” $ git config –global user.email “” 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

...