-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
executable file
·309 lines (268 loc) · 8.67 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
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
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Intro to Github</title>
<meta name="description" content="Intro to Github">
<meta name="author" content="Ryan Brownhill">
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/sky.css" id="theme">
<!-- Code syntax highlighting -->
<link rel="stylesheet" href="lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
<section>
<h3>Intro to</h3>
<img style="width:500px" src="img/GitHub_Logo.png"/>
<h3>for everyone!</h3>
<p>
<small>By: <a href="http://www.ryanbrownhill.com">Ryan Brownhill</a> / <a href="http://twitter.com/ryan_brownhill">@ryan_brownhill</a></small>
</p>
</section>
<section>
<h2>What is Git</h2>
<p>
Git is version control.
</p>
</section>
<section>
<h2>What is GitHub</h2>
<p>
A website that uses Git.
</p>
</section>
<section>
<section>
<h2>So where does this fit into my design process?</h2>
<p class="fragment">
Think of Github as a project managment platform.
</p>
</section>
<section>
<h2>converse</h2>
</section>
<section>
<h2>decide</h2>
</section>
<section>
<h2>Update</h2>
</section>
<section>
<h2>See progress</h2>
</section>
<section>
<h2>Contribute to the codebase</h2>
</section>
</section>
<section>
<section>
<h2>Parts of a Github Repo</h2>
</section>
<!-- Example of nested vertical slides -->
<section data-background="img/repo.png">
<div class="text-bg">
<h2>Repo Files</h2>
<p>Home of your project files.</p>
</div>
</section>
<section data-background="img/wiki.png">
<div class="text-bg">
<h2>Wiki</h2>
<p>Work in progress information.</p>
</div>
</section>
<section data-background="img/issues.png">
<div class="text-bg">
<h2>Issues</h2>
<p>Actionable tasks that need to be completed.</p>
</div>
</section>
<section data-background="img/labels.png">
<div class="text-bg">
<h2>Labels</h2>
<p>Tags to add to issues.</p>
</div>
</section>
<section data-background="img/milestone.png">
<div class="text-bg">
<h2>Milestones</h2>
<p>Collection of Issues with a deadline.</p>
</div>
</section>
<section data-background="img/pull-request.png">
<div class="text-bg">
<h2>Pull-Requests</h2>
<p>Files you want merged into the repo.</p>
</div>
</section>
</section>
<section>
<h2>Issues</h2>
<p>
This is where <em>most</em> of the work happens.
</p>
</section>
<section data-background="img/issue-thread.gif">
<div style="background-color:white;">
<p>This is what a common issue thread looks like.</p>
</div>
</section>
<section>
<section>
<h2>How to Work with Issues</h2>
</section>
<section>
<p>Share <strong>EVERYTHING</strong> within the related issue - post updates, comps, roadblocks, real-life discussions, etc. </p>
</section>
<section>
<img src="img/markdown.png" height="968%" width="1894" alt="">
<p>Issues work use Markdown.</p>
</section>
<section>
<img src="img/drag-drop.gif" height="100%" width="1384" alt="">
<p>Images are supported just DRAG AND DROP!</p>
</section>
<section>
<img src="img/roadblocks.png" height="100%" width="1578" alt="">
<p>You can reference other issues that might be roadblocks to progress.</p>
</section>
<section>
<img src="img/checkboxs.png" height="20%" width="50%" alt="">
<img src="img/checkbox-progress.png" height="100%" width="1744" alt="">
<p>You can add checkboxes to your issue of tasks that need to be completed - You can see this progress on the outside!</p>
</section>
<section>
<img src="img/mentions.png" height="100%" width="100%" alt="">
<p>Tag people with <code>@name</code> </p>
</section>
</section>
<section>
<section>
<h2>Rules of Issues</h2>
<ul>
<li>Issues are worded as a deliverable</li>
<li>Never close issues without a Pull Request that relates</li>
<li>Never close your OWN Issue or Pull Request! - Always have someone else look it over before</li>
</ul>
</section>
<section>
<img src="img/issues-wording.png" height="100%" width="100%" alt="">
<p>Worded as a deliverable</p>
</section>
<section>
<img src="img/close-pullrequest.png" height="100%" width="100%" alt="">
<p>Never Close without a related Pull Request</p>
</section>
<section>
<img src="img/thumbsup.png" height="480" width="463" alt="">
<p><code>:thumbsup:</code> FOR APPROVAL</p>
</section>
<section>
<img src="img/thumbsup-ex.png" height="100%" width="100%" alt="">
</section>
<section>
<a href="http://www.emoji-cheat-sheet.com"><img src="img/emoji.png" height="100%" width="1854" alt=""></a>
</section>
</section>
<section>
<h2>Milestones</h2>
<p>Milestones are a way to track progress of a project</p>
<ul>
<li>Link issues to milestones</li>
<li>Set Deadlines</li>
<li>See Progress!</li>
</ul>
</section>
<section data-background="img/waffle-io.png">
<div class="text-bg">
<h1>Waffle.IO</h1>
</div>
</section>
<section>
<section>
<h2>Wiki vs. Repo</h2>
</section>
<section>
<h2>Wiki</h2>
<p>Wiki is where we will work on the content.</p>
<ul>
<li>Abstracted User Research</li>
<li>Copywriting for Product</li>
<li>Information Architecture</li>
<li>Final Documentation that doesn't live in the codebase</li>
<li>Lexicon</li>
<li>etc.</li>
</ul>
</section>
<section>
<h2>Repo</h2>
<p>Repo is where the code base lives.</p>
<ul>
<li>Final Copy for Product</li>
<li>Final Documentation for the codebase</li>
<li>Code</li>
</ul>
</section>
</section>
<section>
<h2>Contributing to the Repo</h2>
<ul>
<li>Fork Project and Create a pull request from your fork.</li>
<li><strong>NEVER PUSH TO MASTER! EVER!</strong></li>
<li>Create a branch named with what you are working.</li>
</ul>
</section>
<section data-markdown>
<script type="text/template">
# Resources
* [Using github on multidisciplinary teams](http://viget.com/advance/using-github-on-multidisciplinary-teams)
* [Waffle.IO](https://waffle.io) - for Issue Managment
* [Mastering Markdown](https://guides.github.com/features/mastering-markdown/)
* [Learn Git - Kevin Suttle](http://kevinsuttle.com/learn-git/)
* [Sam Richard - Presentations](http://snugug.com/presentations)
* [Github Training](https://training.github.com/kit/)
</script>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>
<script>
// Full list of configuration options available at:
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// Optional reveal.js plugins
dependencies: [
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
</html>