git:configure_git
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
git:configure_git [2016/10/21 10:24] – [Configure GIT so that commit messages generated for you will contain your correct information] peter | git:configure_git [2019/11/29 14:53] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== Configure GIT ====== | ||
- | |||
- | ===== Configure GIT so that commit messages generated for you will contain your correct information ===== | ||
- | |||
- | The easiest way of doing this is through the **git config** command. | ||
- | |||
- | <code bash> | ||
- | git config --global user.name "Your Name" | ||
- | git config --global user.email " | ||
- | </ | ||
- | |||
- | You can see all of the configuration items that have been set by typing: | ||
- | |||
- | <code bash> | ||
- | git config --list | ||
- | </ | ||
- | |||
- | Returns | ||
- | |||
- | < | ||
- | user.name=Your Name | ||
- | user.email=youremail@domain.com | ||
- | </ | ||
- | |||
- | As you can see, this has a slightly different format. | ||
- | |||
- | <code bash> | ||
- | vi ~/ | ||
- | </ | ||
- | |||
- | <file git ~/ | ||
- | [user] | ||
- | name = Your Name | ||
- | email = youremail@domain.com | ||
- | </ | ||
- | | ||
- | There are many other options that you can set, but these are the two essential ones needed to prevent warnings in the future. | ||
git/configure_git.1477045443.txt.gz · Last modified: 2020/07/15 09:30 (external edit)