From e7382372f7091282c29f14a4a13aa3cfff5f486b Mon Sep 17 00:00:00 2001 From: Francis Rowe Date: Sat, 31 Jan 2015 10:13:09 -0500 Subject: docs/git/index.html: Add notes about setting up git --- (limited to 'docs/git') 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 @@

First, install the build dependencies.

+ +

+ Since libreboot makes extensive use of git, you need to setup git properly. If you haven't setup + git yet, the minimum requirement is:
+ $ git config --global user.name "Your Name"
+ $ git config --global user.email your@emailaddress.com
+ This is what will also appear in git logs if you ever commit your own changes to a given repository. For + more information, see http://git-scm.com/doc. +

+ +

+ Another nice config for you (optional, but recommended):
+ $ git config --global core.editor nano
+ $ git config --global color.status auto
+ $ git config --global color.branch auto
+ $ git config --global color.interactive auto
+ $ git config --global color.diff auto +

After that, run the get script:
-- cgit v0.9.1