-
Notifications
You must be signed in to change notification settings - Fork 4
/
prereq.html
165 lines (140 loc) · 4.24 KB
/
prereq.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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
<!doctype html>
<html>
<head>
<title>
ACM Git Workshop: Requirements </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/960.css">
<script src="js/live.js"></script>
</head>
<body>
<header>
<div id="heromast">
<div class="container_12">
<div class="grid_5">
<h1><a href="index.html">Git in <br> the Habit</a></h1>
<h2><a href="index.html">Version Control Workshop</a></h2>
</div>
<div class="grid_4 push_3 event-details">
<ul>
<li>
<strong>Wednesday,</strong>
</li>
<li>
<strong>November 18th 2015</strong>
</li>
<li>2:00PM — 4:00PM</li>
<li>ECS—304</li>
</ul>
</div>
</div>
<nav>
<div class="container_12">
<ul class="grid_12">
<li><a href="index.html">Home</a></li>
<li><a href="tutorial.html">Tutorial</a></li>
<li><a href="gitcli.html">bash</a></li>
<li><a href="prereq.html">Requirements</a></li>
<li><a href="presentation.html">Presentation</a></li>
<li><a href="about.html">Info</a></li>
</ul>
</div>
</nav>
</div>
</header>
<div class="body-content">
<div class="wrapper">
<article class="container_12">
<div class="quick-guide">
<div class="grid_12">
<h1>Requirements</h1>
<h2>Please do the following before attending</h2>
</div>
<div class="grid_12">
<h3>0. What to bring</h3>
</div>
<div class="grid_12 download">
<p>Please bring a laptop. We unfortunately will not be able to provide any.</p>
</div>
<div class="grid_12">
<h3>1. Sign up for GitHub</h3>
</div>
<div class="grid_12 download">
<a href="http://www.github.com" target="_blank">
Github.com
</a>
</div>
<div class="grid_12">
<h3>2. Download & Install Git</h3>
</div>
<div class="grid_6 download">
<a href="http://git-scm.com/download/win" target="_blank">
Download for Windows
</a>
</div>
<div class="grid_6 download">
<a href="http://git-scm.com/download/mac" target="_blank">
Download for Mac
</a>
</div>
<div class="grid_12" style="text-align:center">
<p> <em>Linux users: please see the documention for your respective distribution.</em></p>
</div>
<div class="grid_12">
<h3>3. Make sure you have a text editor setup</h3>
<h4 style="font-weight:normal; text-align:center; font-size:1.6em; padding:20px 20%;">
You may use whichever you wish, however we will
be referencing the following for the workshop.
<br>
<br>
<em>Windows Users: You may not use notepad.exe</em>
</h4>
</div>
<div class="grid_4 download">
<h2>Windows</h2>
<a href="http://notepad-plus-plus.org/" target="_blank">
Notepad++
</a>
</div>
<div class="grid_4 download">
<h2>OS X</h2>
<a href="http://www.barebones.com/products/textwrangler/" target="_blank">
TextWrangler
</a>
</div>
<div class="grid_4 download" style="text-align:center">
<h2>Linux</h2>
<a href="http://www.vim.org/" target="_blank">vim</a>
</div>
<div class="grid_12 download">
<br>
<br>
<h3>4. Please review the following commands</h3>
<a href="gitcli.html">Shell Commands</a>
<br>
<br> <br>
<br> <br>
<br>
</div>
</div>
</article>
</div>
</div>
<footer>
<h2 class="big-call">Brought to you by:</h2>
<div class="logo-container">
<a class="footer-logo" href="http://csulb.acm.org">
<img src="img/logos/acmlogo.png" alt="CSULB ACM Logo">
</a>
<!--
<a class="footer-logo" href="http://www.csulbsigweb.org">
<img src="img/logos/sigweblogo.png" alt="CSULB ACM Logo">
</a>
<a class="footer-logo" href="http://www.eatsociety.org">
<img src="img/logos/eatlogo.png" alt="CSULB EAT Logo">
</a>
-->
</div>
</footer>
</body>