forked from jlord/git-it-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
67 lines (60 loc) · 3.76 KB
/
index.html
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
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Git-it</title>
<meta name="description" content="learn git and github">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/imgs/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="assets/css/style.css">
<script src="./lib/challenges-completed.js"></script>
<script src="./lib/handle-external-links.js"></script>
</head>
<body class="tableofcontents">
<header class="site-header">
<div class="lang-select">
<select id="lang-select" class="lang-select">
<option value="">English</option>
<option value="zhtw">正體中文</option>
</select>
</div>
<a class="filledblock" href="index.html">
Git-it
</a>
</header>
<div class="page-wrapper">
<h2>Welcome to Git-it!</h2>
<p>Step-by-step instructions for each of the challenges in the <a href="http://github.com/jlord/git-it" target="_blank">Git-it workshop</a>. View the <a href="index-zhtw.html">Traditional Chinese version</a>.</p>
<p>This guide comes with Git-it when you install it so it works offline and you can use it as a resource at anytime (see the instructions when you select a challenge in terminal). Have fun!</p>
<a href="challenges/get_git.html" id="get-started"><button class="teal full-width">Get Started!</button></a>
<h2>Git-it Challenges</h2>
<ol class="toc">
<li id="get_git"><a href="challenges/get_git.html">Get Git</a> Install and configure Git</li>
<li id='repository'><a href="challenges/repository.html">Repository</a> Create a local repository</li>
<li id='commit_to_it'><a href="challenges/commit_to_it.html">Commit to it</a> Check status, add and commit changes</li>
<li id='githubbin'><a href="challenges/githubbin.html">GitHubbin</a> Get a GitHub account</li>
<li id='remote_control'><a href="challenges/remote_control.html">Remote Control</a> Connect local repositories to remote ones on GitHub.com</a></li>
<li id='forks_and_clones'><a href="challenges/forks_and_clones.html">Forks and Clones</a> Fork and clone an open source repository</li>
<li id='branches_arent_just_for_birds'><a href="challenges/branches_arent_just_for_birds.html">Branches aren't just for Birds</a> Create a branch for features/changes</li>
<li id='its_a_small_world'><a href="challenges/its_a_small_world.html">It's a Small World</a> Add and sync with a collaborator (Hi, @reporobot!)</li>
<li id='pull_never_out_of_date'><a href="challenges/pull_never_out_of_date.html">Pull, Never Out of Date</a> Push and pull to sync changes to GitHub.com</li>
<li id='requesting_you_pull_please'><a href="challenges/requesting_you_pull_please.html">Requesting You Pull Please</a> Create a pull request</li>
<li id='merge_tada'><a href="challenges/merge_tada.html">Merge Tada</a> Merge and delete branches</li>
</ol>
<button id="clear-all-challenges">Clear all challenge statues</button>
<footer>
<ul>
<li class="all-caps"><a href="index.html"><strong>Git-it Challenges</strong></a></li>
<li class="all-caps"><a href="./pages/about.html">About</a></li>
<li class="all-caps"><a href="./pages/dictionary.html">Dictionary</a></li>
<li class="all-caps"><a href="./pages/resources.html">Resources</a></li>
<li class="all-caps">
<a href="http://github.com/jlord/git-it/issues/new" target="_blank">Open an Issue</a>
</li>
</ul>
</footer>
</div>
<script src="./lib/languages.js"></script>
</body>
</html>