0 votes
by
What is the function of ‘git config’?

1 Answer

0 votes
by
Git uses our username to associate commits with an identity. The git config command can be used to change our Git configuration, including your username.

Suppose you want to give a username and email id to associate commit with an identity so that you can know who has made a commit. For that I will use:

git config –global user.name “Your Name”: This command will add your username.

git config –global user.email “Your E-mail Address”: This command will add your email id.

Related questions

0 votes
asked Aug 24, 2023 in Git by JackTerrance
0 votes
asked Sep 17, 2022 in DC-OS by Robin
...