Development using git:Configuration: Difference between revisions
No edit summary |
Prabuanand (talk | contribs) (made the content consistent with Include:Setup your system and account for building packages) |
||
(2 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
== Configure your global git config == | |||
{{Cmd| | Configure your name and email address in git. This name and email address will show up in all your commits: {{Cmd|$ git config --global user.name "Your Full Name" | ||
git config --global user.email | $ git config --global user.email "your@email.address"}} | ||
Using <tt>git config</tt> without <tt>--global</tt> let you configure other details for a specific git repository. | Using <tt>git config</tt> without <tt>--global</tt> let you configure other details for a specific git repository. | ||
[[Category:Development]] |
Latest revision as of 13:42, 17 February 2025
Configure your global git config
Configure your name and email address in git. This name and email address will show up in all your commits:
$ git config --global user.name "Your Full Name" $ git config --global user.email "your@email.address"
Using git config without --global let you configure other details for a specific git repository.