User Tools

Site Tools


git:configure_git

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

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] petergit: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.  You need to provide your name and email address because Git embeds this information into each commit you do.   
- 
-<code bash> 
-git config --global user.name "Your Name" 
-git config --global user.email "youremail@domain.com" 
-</code> 
- 
-You can see all of the configuration items that have been set by typing: 
- 
-<code bash> 
-git config --list 
-</code> 
- 
-Returns 
- 
-<code> 
-user.name=Your Name 
-user.email=youremail@domain.com 
-</code> 
- 
-As you can see, this has a slightly different format.  The information is stored in your Git configuration file, which you can optionally edit by hand with a text editor: 
- 
-<code bash> 
-vi ~/.gitconfig 
-</code> 
- 
-<file git ~/.gitconfig> 
-[user] 
-    name = Your Name 
-    email = youremail@domain.com 
-</file> 
-     
-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)

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki