-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
executable file
·97 lines (85 loc) · 4.65 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>GitHub for Designers: A 25x52 Initiative</title>
<!-- Bootstrap -->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css">
<!-- Optional theme -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap-theme.min.css">
<!-- Custom fonts -->
<link href='https://fonts.googleapis.com/css?family=Chivo:400,400italic,900,900italic' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Oswald:400,300,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:400,900' rel='stylesheet' type='text/css'>
<!-- Custom stylesheet -->
<link rel="stylesheet" href="css/cv.css">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="container-fluid lede">
<div class="container">
<div class="eyebrow pull-left"><a href="https://25x52.site" target="_blank">25x52</a></div>
<div class="series pull-left">11</div>
<div class="wrapper pull-left">
<h1>GitHub for Designers, Non-Programmers</h1>
<hr>
<h2><a href="http://githubfordesigners.splashthat.com" target="_blank">14 Jan 2015 Orbital NYC</a> and <a href="https://www.eventbrite.com/e/github-for-non-programmers-mac-tickets-16869532225" target="_blank">13 May 2015 Orbital NYC</a></h2>
<hr>
<p>
This material is from the GitHub for Non-Programmers (Mac/OS X) workshop for <a href="https://25x52.site" target="_blank">25x52</a>, an initiative to launch 25 projects in 52 weeks.
</p>
<h3>Set-Up</h3>
<p>
These set-up instructions are also outlined in the <a href="https://github.com/femmebot/Di55ect-GitHub/tree/master#pre-workshop-setup" target="_blank">README.md file</a>.
</p>
<p>
<ol>
<li>
If you don’t yet have one, <a href="https://github.com">create a GitHub account</a>
</li>
<li>
If you don’t already have a text editor installed, <a href="https://atom.io">download and install Atom editor</a>. (optional: Preferences > Install autocomplete plus, autoclose html)
</li>
<li>
Download & install (or upgrade) <a href="https://developer.apple.com/downloads/index.action">Xcode command line tools</a>. For Yosemite (OS X 10.10+), <a href="http://railsapps.github.io/xcode-command-line-tools.html">follow these instructions</a>. (Scroll down a bit to the section "MacOS Yosemite.") You'll need to create a Mac Developer account if you don't already have one.
</li>
<li>
Install Git using <a href="http://brew.sh">Homebrew</a>. Watch this brief <a href="http://vimeo.com/14649488">video for instructions on installing Homebrew</a>
</li>
<li>
<a href="https://help.github.com/articles/generating-ssh-keys/">Set up GitHub SSH key</a>.
</li>
</ol>
</p>
<h3>Checking Your Set-Up</h3>
<p>
Let's check to make sure that your Git environment is set up properly. Open your Terminal app and type:
</p>
<pre><span class="cmd">brew doctor</span></pre>
<p>
Since you just installed Homebrew, it shouldn't find any problems. But, if it does, go ahead and follow the instructions to fix problems it identifies. It's a good idea to run <span class="code">brew doctor</span> every once in a while.
</p>
</div>
</div>
</div>
<div class="container-fluid showcase">
<div class="container">
<div class="row">
</div><!-- /row -->
</div><!-- /container -->
</div><!-- /container-fluid -->
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script src="js/cv.js"></script>
</body>
</html>