From b5a95e8c10b04c5d2add56c9d9815113149adf3f Mon Sep 17 00:00:00 2001 From: tekkub Date: Mon, 27 Jul 2009 01:49:54 -0600 Subject: h3. --> h2. --- _posts/2009-06-20-git-email-settings.textile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '_posts/2009-06-20-git-email-settings.textile') diff --git a/_posts/2009-06-20-git-email-settings.textile b/_posts/2009-06-20-git-email-settings.textile index fd01a96..4a1d08d 100644 --- a/_posts/2009-06-20-git-email-settings.textile +++ b/_posts/2009-06-20-git-email-settings.textile @@ -6,7 +6,7 @@ description: Configure your local git installation so that commits are linked to categories: setup --- -h3. Setting user name and email globally in git +h2. Setting user name and email globally in git Git needs to know your username and email address to properly credit your commits. Setting this setting will also let GitHub link the commits you make to your GitHub account. Only commits made after you change this setting will use the new info, old commits will preserve the info they were committed with. @@ -15,7 +15,7 @@ p(. _The "email" setting does not have to be a valid email address, it only need
$ git config --global user.name "Tekkub"
 $ git config --global user.email "tekkub@gmail.com"
-h3. Overriding settings for individual repos +h2. Overriding settings for individual repos If you do not want commits to be "blamed" on your global email setting, you can override these settings on a per-repo basis. @@ -25,7 +25,7 @@ p(. _This change will only affect future commits. Existing commits will retain $ git config user.name "Not Tekkub" $ git config user.email "not@tekkub.net" -h3. GitHub token config +h2. GitHub token config Some tools connect to GitHub without SSH, for these tools you need to set your "local GitHub config":http://github.com/blog/180-local-github-config. You can find your token at the top of the "account page":https://github.com/account -- cgit v1.3.1