Working Ninja
2016-04-14T07:34:25

First, make sure we remove .svn folders and files from tracking by adding a new line ".svn/" to our .gitignore file.

Next, we will find all folders that are named .svn and for each folder found remove all files contained within it. Note the only difference between the …

READ MORE

2016-01-11T23:07:13

Forgot that one file to add during your last commit? Haven't pushed changes to a remote yet? Great! Easy fix:

$ git add forgotten_file
$ git commit --amend

READ MORE

2014-10-27T17:52:25

Was working on updating a WordPress installation from 3.4.1 to 4.0 while also pulling it out of a multisite install. I have been using Git to keep track of changes along the way (thankfully!). I ran into an upgrade issue and used the following commands to get me back to …

READ MORE

2014-04-06T17:43:00

If I have my choice of workflow, here is what it currently includes (note: this is subject to change as there are tons of awesome people developing for the web):

The Cradle of Creation: The Development Server

First off, all creation and changes are made on the development server so …

READ MORE