blob: 6e01f775f5aa8f98cd32aa3af09f5f3ac5ed79df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
---
layout: default
title: Welcome to the GitHub Help site
index_cats:
- setup
- mac
- repos
- windows
- collaborating
---
Here we have compiled many guides to help you set up and use GitHub. Be aware that these guides generally only cover GitHub-specific topics, for help learning how to use Git, please check out "Learn.GitHub":http://learn.github.com/
This site is a work in progress.
{% for cat in (page.index_cats) %}
<div class="category_index">
<h2>{{ cat | capitalize }}</h2>
<dl>
{% for post in site.posts reversed %}{% if post.categories contains cat %}
<dt><a href="{{ post.url }}">{{ post.title }}</a></dt>
<dd>{{ post.description }}</dd>
{% endif %}{% endfor %}
</dl>
</div>
{% endfor %}
<div class="clear"></div>
|