48 lines
2.1 KiB
HTML
48 lines
2.1 KiB
HTML
<!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>
|
|
<p><a href="https://git-scm.com/downloads">Git dowload page</a> -- install current version</p>
|
|
<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 "Felix the Cat"
|
|
$ git config --global user.name "felix@miauw.org"</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>
|
|
<p><a href="https://nodejs.org/en/download/">Node.js download page</a> -- install LTS verion v6.9.1</p>
|
|
<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>
|
|
<p><a href="http://www.sublimetext.com/3">Sublime Text 3 download page</a></p>
|
|
<h3 id="github">Github</h3>
|
|
<h4 id="create-account">Create account</h4>
|
|
<p><a href="https://github.com">Github</a></p>
|
|
</content>
|
|
</body>
|
|
</html> |