Sublime text setup with essential tools

Download and install the latest Sublime text Go to the sublime text website and download Sublime text 3 for your OS. https://www.sublimetext.com/3 Download and install the sublime text package manager Go the package control website, download and install it on your sublime text (follow the instructions on the website). https://packagecontrol.io/installation Download and install sublime linter Go to the sublime linter website, download and install it on your sublime text. http://www.sublimelinter.com/en/latest/installation.html...

February 10, 2016 · 1 min · Me

GIT basic usage

Git basic commands When you have a new repo git clone git@github.com:vincentserpoul/rbac.git https or git? the git protocal provides better security and easiness if you are using a correct key. If you use the git protocol, you can easily associate your private key in the ~/.ssh/config file with the following: Host github Hostname github.com User vincentserpoul IdentityFile ~/.ssh/myprivatekey IdentitiesOnly yes When you have a new modification ready for commit git status You will get an overview of what’s new If there is any new files (Untracked files), you will first need to add them:...

February 20, 2015 · 2 min · Me