forked from jlord/git-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_git.html
129 lines (105 loc) · 8.3 KB
/
get_git.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!doctype html>
<html class="no-js" lang="">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Git-it Guide</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">
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600,700,900' rel='stylesheet' type='text/css'>
</head>
<body>
<!--[if lt IE 8]>
<p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience.</p>
<![endif]-->
<header class="site-header">
<div class="nav">
<!-- <span class="left hand">☜</span> -->
<span class="filledblock"><a href="../index-zhtw.html">Git-it</a></span>
<!-- <span class="right hand">☞</span> -->
</div>
<div class="wrapper">
<div class="challenge-band left">
<span class="meta">CHALLENGE</span>
<h2>get git</h2>
</div>
<div class="number-band right tar">
<span class="meta">NUMBER</span>
<h2>1 / 11</h2>
<div>
</div>
</header>
<div class="wrapper">
<div class="challenge">
<h2>關卡內容:</h2>
<p>請安裝 Git 到你的電腦上,並且設定好 Git 內部的使用者名稱和電子信箱。</p>
</div>
<h2>Git</h2>
<p>Git 是一個<strong>開源軟體</strong>(完全免費),作者為 Linus Torvalds,他也是 Linux 作業系統的作者。</p>
<p>Git 是一個專門做修改記錄的程式,在軟體、程式設計的領域中叫做<strong>版本控制</strong>。</p>
<h2>步驟:安裝 Git</h2>
<ul>
<li><strong>Windows 系統</strong>:建議你下載 GitHub for Windows 這個軟體。這個程式內包含 Git 在裡頭,而且比較容易安裝:
<a href="https://windows.github.com/" target="_blank">windows.github.com</a>。你可以用 <strong>Git Shell</strong> 作為你的終端機。</li>
<li><strong>Mac 系統</strong>: 你可以下載 GitHub for Mac 這個軟體,裡頭也包含 Git 的程式。
<a href="https://mac.github.com/" target="_blank">mac.github.com</a>(必須到「Preferences」中選擇「Install Command Line Tools」)。或是:
<ul>
<li>直接下載、安裝 Git 主程式:前往 <a href="http://git-scm.com/downloads" target="_blank">git-scm.com/downloads</a> 並按照網頁上的步驟安裝。</li>
</ul>
</li>
</ul>
<p>Git 不像是你電腦裡的其他軟體。你不會在桌面上看到一個軟體圖示,但你可以透過終端機或是其他 Git
的電腦程式(如 GitHub for Mac 或 GitHub for Windows)來使用。而終端機就是我們在 Git-it 中將會使用的程式!</p>
<h2>步驟:設定 Git</h2>
<p>安裝好 Git 後,打開 <strong>終端機</strong>(或 Bash、Shell、Prompt、命令提示字元介面),並輸入以下指令來確認你有順利安裝好 Git:</p>
<p><code>$ git --version </code></p>
<p>如果有安裝成功,這個指令將會告訴你,你所安裝的版本號碼,如:</p>
<p><code>git version 1.9.1</code></p>
<p>(請確定你的 git 版本是在 <code>1.7.10</code>以上。)</p>
<p>接下來,讓 Git 知道這台電腦所做的修改該連結到什麼使用者:</p>
<p>設定你的名字:</p>
<p><code>$ git config --global user.name "<Your Name>"</code></p>
<p>設定你的電子信箱:</p>
<p><code>$ git config --global user.email <[email protected]></code></p>
<div class="verify">
<h3>確認你完成了所有步驟:</h3><code>git-it verify</code>
<h3>前往下一關:</h3><code>git-it</code>
</div>
<div id="git-tips">
<h2>撇步</h2>
<p>這個金錢符號 <code>$</code> 會常常出現在程式的文件中,錢號代表這個指令是<strong>終端機</strong>的指令(參考上面的指令寫法)。在輸入指令的時候是不需要輸入 <code>$</code> 的,只需要輸入它後面的指令即可。例如如果你要輸入最後面「確認完成步驟的指令」,只要在終端機輸入 <code>git-it verify</code> 就好了。</p>
</div>
<div class="prenext">
<div class="pre lef meta">
<a href="../index-zhtw.html">All Challenges</a>
<div>⤶ </div>
</div>
<div class="next tar right meta">
<a href="repository.html">repository</a>
<div>⤷</div>
</div>
</div>
<footer>
<ul>
<li class="meta"><a href="../index-zhtw.html"><strong>Git-it Challenges</strong></a></li>
<li class="meta"><a href="../about.html">About</a></li>
<li class="meta"><a href="../dictionary.html">Dictionary</a></li>
<li class="meta"><a href="../resources.html">Resources</a></li>
<li class="meta">
<a href="http://github.com/jlord/git-it/issues/new" target="_blank">Open an Issue</a>
</li>
</ul>
</footer>
</div>
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-52690821-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>