summaryrefslogtreecommitdiff
path: root/_posts/2009-06-20-git-email-settings.textile
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2009-07-27 01:49:54 -0600
committertekkub <tekkub@gmail.com>2009-07-27 01:49:54 -0600
commitb5a95e8c10b04c5d2add56c9d9815113149adf3f (patch)
treec3387f5b5aeaeb6f8f140665e3af5ee612137cd4 /_posts/2009-06-20-git-email-settings.textile
parent8352e9538ecd1a66a44239a3e775660d91f20d6d (diff)
h3. --> h2.
Diffstat (limited to '_posts/2009-06-20-git-email-settings.textile')
-rw-r--r--_posts/2009-06-20-git-email-settings.textile6
1 files changed, 3 insertions, 3 deletions
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
<pre>$ git config --global user.name "Tekkub"
$ git config --global user.email "tekkub@gmail.com"</pre>
-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"</pre>
-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