Git

Quick and Dirty Git Deployment

Posted by Jeremy Harris on Mon, Oct 10, 2011 @ 2:42pm

I decided I hated the way were were "deploying" at work. The guy before me never really had a deployment strategy (at least none that he left behind), let alone version controlled or tested software. I decided to take a crack at creating a simple Git-only deployment system. Keep in mind that this doesn't provide any quality control, such as running tests or setting permissions. It's just someth...

Batch Updating Submodule URLs

Posted by Jeremy Harris on Sun, Jun 26, 2011 @ 10:18am

Since I have moved all of my plugins to Github, there's obviously some updating that needs to be done on my CakePHP apps that use those plugins as git submodules. Namely, I needed to replace the old repo urls with the new ones. To do this, I first opened up my .gitmodules file using vim.

$ vim .gitmodules

Then just some regexp happiness from command mode.

:%s/git\(:\/\/\|@\)codaset\.com\(:\|...

Moving to Github

Posted by Jeremy Harris on Mon, Jun 20, 2011 @ 6:00pm

After hosting my open source projects and plugins on Codaset for some time now, I've decided to move them to Github. There are a few reasons for this, which I'll explain. Before I go into detail, however, let me just say that I'm extremely thankful and supportive of Joel Moss (creator of Codaset) and his work to improve the git hosting world.

I've also been very happy with Joel's email custome...