58 lines
1.1 KiB
Markdown
58 lines
1.1 KiB
Markdown
---
|
|
title: CTH-2016 / Setup (Git, Node, Sublime Text)
|
|
---
|
|
|
|
### Git
|
|
|
|
#### 1. Download
|
|
|
|
[Git dowload page](https://git-scm.com/downloads) -- install current version
|
|
|
|
#### 2. Test Installation
|
|
|
|
Open a terminal and type:
|
|
|
|
$ git --version
|
|
|
|
And you should have this printed out if the install has been successful:
|
|
|
|
git version 2.10.1
|
|
|
|
#### 3. Configuring git (credentials)
|
|
|
|
If this is the first time you use git, please make sure you give yourself a user name/email:
|
|
|
|
$ git config --global user.name "Felix the Cat"
|
|
$ git config --global user.name "felix@miauw.org"
|
|
|
|
These credentials will be used to identify your work when committing to a git repository.
|
|
|
|
### Node.js
|
|
|
|
#### 1. Download
|
|
|
|
[Node.js download page](https://nodejs.org/en/download/) -- install LTS verion v6.9.1
|
|
|
|
#### 2. Test Installation
|
|
|
|
Open a terminal and type:
|
|
|
|
$ node --version
|
|
|
|
And you should have this printed out if the install has been successful:
|
|
|
|
v6.9.1
|
|
|
|
### Sublime Text
|
|
|
|
#### Download
|
|
|
|
[Sublime Text 3 download page](http://www.sublimetext.com/3)
|
|
|
|
### Github
|
|
|
|
#### Create account
|
|
|
|
[Github](https://github.com)
|
|
|