1.1 KiB
1.1 KiB
| title |
|---|
| CTH-2016 / Setup (Git, Node, Sublime Text) |
Git
1. Download
Git dowload page -- 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 -- 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