summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortekkub <tekkub@gmail.com>2010-01-28 17:40:36 -0700
committertekkub <tekkub@gmail.com>2010-01-28 17:40:36 -0700
commitfd3ba11c3024dcc946651e04a8f71ba836582fb9 (patch)
tree5c564877e5aad9388d3b0a4c27e0f01ca92c2f78
parent0477f6bbea431c70f1468652d9119a69774a4dfa (diff)
Add popular guides to index
-rw-r--r--_posts/2009-06-11-forking.textile (renamed from _posts/2009-06-16-forking.textile)3
-rw-r--r--_posts/2009-06-15-key-setup-redirect.textile3
-rw-r--r--_posts/2009-06-17-troubleshooting-ssh.textile2
-rw-r--r--_posts/2009-06-20-git-email-settings.textile3
-rw-r--r--index.textile9
5 files changed, 16 insertions, 4 deletions
diff --git a/_posts/2009-06-16-forking.textile b/_posts/2009-06-11-forking.textile
index 04303dc..b4b6592 100644
--- a/_posts/2009-06-16-forking.textile
+++ b/_posts/2009-06-11-forking.textile
@@ -2,7 +2,8 @@
layout: default
title: Forking a project
description: How to fork a project, submit changes, and pull from other repos in the fork network
-categories: collaborating
+categories: collaborating popular
+main_category: collaborating
---
This guide will step you through the process of forking, pushing you changes, and pulling in changes from the upstream repo.
diff --git a/_posts/2009-06-15-key-setup-redirect.textile b/_posts/2009-06-15-key-setup-redirect.textile
index 854f91f..29b7428 100644
--- a/_posts/2009-06-15-key-setup-redirect.textile
+++ b/_posts/2009-06-15-key-setup-redirect.textile
@@ -2,7 +2,8 @@
layout: default
title: Generating SSH keys
description: How to generate SSH keys and add them to GitHub
-categories: setup
+categories: setup popular
+main_category: setup
---
Attempting to redirect to the guide for your OS. If the redirect fails, pick your OS:
diff --git a/_posts/2009-06-17-troubleshooting-ssh.textile b/_posts/2009-06-17-troubleshooting-ssh.textile
index d7dcd19..fc05789 100644
--- a/_posts/2009-06-17-troubleshooting-ssh.textile
+++ b/_posts/2009-06-17-troubleshooting-ssh.textile
@@ -2,7 +2,7 @@
layout: default
title: Troubleshooting SSH issues
description: Solutions to common SSH issues
-categories: setup troubleshooting
+categories: setup troubleshooting popular
main_category: troubleshooting
---
diff --git a/_posts/2009-06-20-git-email-settings.textile b/_posts/2009-06-20-git-email-settings.textile
index f4dcadb..11abe29 100644
--- a/_posts/2009-06-20-git-email-settings.textile
+++ b/_posts/2009-06-20-git-email-settings.textile
@@ -2,7 +2,8 @@
layout: default
title: Setting user name, email and GitHub token
description: Configure your local git installation so that commits are linked to your GitHub account
-categories: setup
+categories: setup popular
+main_category: setup
---
This guide covers basic git settings you should set before making any commits.
diff --git a/index.textile b/index.textile
index 93c7e52..440ea4a 100644
--- a/index.textile
+++ b/index.textile
@@ -13,6 +13,15 @@ If you would like to submit your own guides, please fork "our repo":http://githu
<em>We are in the process of moving guides over from the "old wiki":http://github.com/guides/home.</em>
+h3. Popular guides
+
+<dl>
+ {% for post in site.posts reversed %}{% if post.categories contains "popular" %}
+ <dt><a href="{{ post.url }}" id="{{ cat }}">{{ post.title }}</a></dt>
+ <dd>{{ post.description }}</dd>
+ {% endif %}{% endfor %}
+</dl>
+
h2. Getting help
There are a number of resources available to help you learn git or fix issues with GitHub: