diff options
author | Francis Rowe <info@gluglug.org.uk> | 2015-01-31 10:13:09 (EST) |
---|---|---|
committer | Francis Rowe <info@gluglug.org.uk> | 2015-01-31 10:13:09 (EST) |
commit | e7382372f7091282c29f14a4a13aa3cfff5f486b (patch) | |
tree | 21913cb7819ee9d17feb8f9b7ffdfd65ad8cb588 | |
parent | 6b04ce729d90fe5d2cd134eff877f92774dc8b0e (diff) | |
download | libreboot-e7382372f7091282c29f14a4a13aa3cfff5f486b.zip libreboot-e7382372f7091282c29f14a4a13aa3cfff5f486b.tar.gz libreboot-e7382372f7091282c29f14a4a13aa3cfff5f486b.tar.bz2 |
docs/git/index.html: Add notes about setting up git
-rw-r--r-- | docs/git/index.html | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/docs/git/index.html b/docs/git/index.html index e2eb5b0..02f4225 100644 --- a/docs/git/index.html +++ b/docs/git/index.html @@ -78,6 +78,24 @@ <p> First, <a href="#build_dependencies">install the build dependencies</a>. </p> + + <p> + Since libreboot makes extensive use of git, you need to setup git properly. If you haven't setup + git yet, the minimum requirement is:<br/> + $ <b>git config --global user.name "Your Name"</b><br/> + $ <b>git config --global user.email your@emailaddress.com</b><br/> + This is what will also appear in git logs if you ever commit your own changes to a given repository. For + more information, see <a href="http://git-scm.com/doc">http://git-scm.com/doc</a>. + </p> + + <p> + Another nice config for you (optional, but recommended):<br/> + $ <b>git config --global core.editor nano</b><br/> + $ <b>git config --global color.status auto</b><br/> + $ <b>git config --global color.branch auto</b><br/> + $ <b>git config --global color.interactive auto</b><br/> + $ <b>git config --global color.diff auto</b> + </p> <p> After that, run the get script:<br/> |