Development using git:Configuration: Difference between revisions
Dubiousjim (talk | contribs) (Category:Development) |
Prabuanand (talk | contribs) |
||
Line 1: | Line 1: | ||
== Configure your global git config == | |||
First you need to tell your name and email to git. This name and email will show up in all your commits. | First you need to tell your name and email to git. This name and email will show up in all your commits. | ||
Latest revision as of 09:55, 14 August 2024
Configure your global git config
First you need to tell your name and email to git. This name and email will show up in all your commits.
git config --global user.name "Your Name Comes Here" git config --global user.email you@yourdomain.example.com
Using git config without --global let you configure other details for a specific git repository.