cth2016/setup.html

50 lines
2.1 KiB
HTML
Raw Normal View History

2016-10-31 11:51:28 +01:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="generator" content="pandoc">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<title>CTH-2016 / Setup (Git, Node, Sublime Text)</title>
<style type="text/css">code{white-space: pre;}</style>
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="style/html5.css">
</head>
<body>
<content>
<header>
<h1 class="title">CTH-2016 / Setup (Git, Node, Sublime Text)</h1>
</header>
<h3 id="git">Git</h3>
<h4 id="download">1. Download</h4>
2016-10-31 16:35:27 +01:00
<p><a href="https://git-scm.com/downloads">Git dowload page</a> -- install current version</p>
2016-10-31 11:51:28 +01:00
<h4 id="test-installation">2. Test Installation</h4>
<p>Open a terminal and type:</p>
<pre><code>$ git --version</code></pre>
<p>And you should have this printed out if the install has been successful:</p>
<pre><code>git version 2.10.1</code></pre>
<h4 id="configuring-git-credentials">3. Configuring git (credentials)</h4>
<p>If this is the first time you use git, please make sure you give yourself a user name/email:</p>
<pre><code>$ git config --global user.name &quot;Felix the Cat&quot;
$ git config --global user.name &quot;felix@miauw.org&quot;</code></pre>
<p>These credentials will be used to identify your work when committing to a git repository.</p>
<h3 id="node.js">Node.js</h3>
<h4 id="download-1">1. Download</h4>
2016-10-31 16:35:27 +01:00
<p><a href="https://nodejs.org/en/download/">Node.js download page</a> -- install LTS verion v6.9.1</p>
2016-10-31 11:51:28 +01:00
<h4 id="test-installation-1">2. Test Installation</h4>
<p>Open a terminal and type:</p>
<pre><code>$ node --version</code></pre>
<p>And you should have this printed out if the install has been successful:</p>
<pre><code>v6.9.1</code></pre>
<h3 id="sublime-text">Sublime Text</h3>
<h4 id="download-2">Download</h4>
2016-10-31 16:35:27 +01:00
<p><a href="http://www.sublimetext.com/3">Sublime Text 3 download page</a></p>
2016-10-31 11:51:28 +01:00
<h3 id="github">Github</h3>
<h4 id="create-account">Create account</h4>
<p><a href="https://github.com">Github</a></p>
2016-10-31 16:41:02 +01:00
<h3 id="slack">Slack</h3>
<p><a href="https://cth2016.slack.com">cth2016.slack.com</a></p>
2016-10-31 11:51:28 +01:00
</content>
</body>
</html>