The archives

command line

WordPress Development with Gulp

February 13, 2016

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 Javascript, and optimize images. It will also LiveReload when saving Sass…

Remove previously tracked file from git repository

August 4, 2014

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 removed from the head on the next commit. I run into…