blob: da5d86a734631ddba5af376c84588b4d8c8d2ef5 (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
|
---
layout: default
title: Welcome to the GitHub Help site
---
<div class="span-21" id="welcome">
<p>
Here we have compiled many guides to help you set up and use GitHub.
Be aware that these guides generall only cover GitHub-specific topics, for help learning
how to use Git, please check out <a href="http://learn.github.com/">Learn.GitHub</a>
</p>
<p>This site is a work in progress.</p>
</div>
<div class="span-7" id="start">
<div class="button red">
<a href="p/intro.html">Start the Full Course</a>
</div>
</div>
<div class="span-7" id="how">
<div class="button green">
10 Minute Crash Course
</div>
</div>
<div class="span-7 last" id="why">
<div class="button blue">
"Why Git" in 5 Minutes
</div>
</div>
<div class="span-21 last">
<br clear="both"/>
<hr/>
</div>
<div class="span-5">
<h2>Windows</h2>
{% for post in site.categories.windows %}
<div class='episode'>
<b><a href="{{ post.url }}">{{ post.title }}</a></b>
{% if post.description %}
<p>{{ post.description }}</p>
{% endif %}
</div>
{% endfor %}
</div>
<div class="span-5">
<h2>Mac OSX</h2>
<div class='episode'><b>Distributed Git</b>
<p>Fetch, merge, pull and push between multiple remote repositories.</p>
</div>
</div>
<div class="span-5">
<h2>Linux</h2>
<div class='episode'>
<b>Filter Branch</b>
<p>Modify large sections of your commit history at once, changing emails, names or files globally.</p>
</div>
</div>
<div class="span-6 last">
<h2>Special Interest</h2>
<div class='episode'>
<b>Git and Windows - General</b>
<p>Install and use Git on a Windows environment using the default mSysGit tools.</p>
</div>
</div>
|