command line

Notes from the shop — process, tools, and the occasional opinion.
February 13, 2016

WordPress Development with Gulp

Here's how we develop WordPress websites using Sass and Gulp. At least for this week. We use it to compile Sass, concatenate and minify…
August 4, 2014

Remove previously tracked file from git repository

Here's a simple git command that will remove a previously tracked file from a git repository: git rm --cached <file> The file will be…