The archives

Git

Our WordPress development process

November 18, 2014

After a recent launch a twitter follower asked how we manage development and I replied: He then asked for a writeup. So let’s talk about how we develop WordPress websites. These are the steps we…

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…