December 2008
Intermediate to advanced
184 pages
4h 47m
English
Before you start working with Git, you have to configure it. Before you can start working on a new project, you have to initialize it. This section covers commands related to the initial configuration and setup of Git.
|
prompt> git config --global user.name "Your Name" |
|
|
prompt> git config --global user.email "you@example.com" |
Note: You can set your username and email address on a per-repository basis. This allows you to use a different name and/or email address for different projects.
|
prompt> cd /path/to/repo |
|
|
prompt> git config user.name "Your Name" |
|
|
prompt> git config ... |