forked from ikeike443/git-it-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex-ja.html
69 lines (62 loc) · 3.96 KB
/
index-ja.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
68
69
<!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>
<option value="ja">日本語</option>
</select>
</div>
<a class="filledblock" href="index-ja.html">
Git-it
</a>
</header>
<div class="page-wrapper">
<h2>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>.</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 チャレンジ</h2>
<ol class="toc">
<li id="get_git"><a href="challenges-ja/get_git.html">Get Git</a>Gitをインストールして設定をする</li>
<li id='repository'><a href="challenges-ja/repository.html">Repository
</a> ローカルのrepositoryを作成</li>
<li id='commit_to_it'><a href="challenges-ja/commit_to_it.html">Commit to it</a> ステータスを確認して、コンテンツを追加してcommitをする</li>
<li id='githubbin'><a href="challenges-ja/githubbin.html">GitHubbin</a> GitHubのアカウントを作成</li>
<li id='remote_control'><a href="challenges-ja/remote_control.html">Remote Control</a> ローカルのrepositoryをGitHub.comのrepositoryに接続</a></li>
<li id='forks_and_clones'><a href="challenges-ja/forks_and_clones.html">Forks and Clones</a> オープンソースのrepositoryをforkしてcloneする</li>
<li id='branches_arent_just_for_birds'><a href="challenges-ja/branches_arent_just_for_birds.html">Branches aren't just for Birds</a> 新機能・修正のためにbranchを作成</li>
<li id='its_a_small_world'><a href="challenges-ja/its_a_small_world.html">It's a Small World</a> Collaboratorを追加して作業を同期する (こんにちは、 @reporobot!)</li>
<li id='pull_never_out_of_date'><a href="challenges-ja/pull_never_out_of_date.html">Pull, Never Out of Date</a> 修正をGitHub.comと同期するためにpushとpullを行う</li>
<li id='requesting_you_pull_please'><a href="challenges-ja/requesting_you_pull_please.html">Requesting You Pull Please</a> Pull requestを作成</li>
<li id='merge_tada'><a href="challenges-ja/merge_tada.html">Merge Tada</a> Branchをmergeしてdelete(削除)する</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/app.js"></script>
</body>
</html>