Git cheatsheet
Basic // Initialises a repo on current directory $ git init // Lists modifications git status // Stage modifications $ git add {file1} {file2} {filex} $ git add . or…
Basic // Initialises a repo on current directory $ git init // Lists modifications git status // Stage modifications $ git add {file1} {file2} {filex} $ git add . or…
Here's a list of tips and tricks on npm usage. // Install the latest lib available for a given module $ npm install my_lib@next // Access information on a specific…
I won't be saying that you should be using a sub version but the main reason behind this post is how important code consistence is when using subversion. If you…