Category Archives: Tools

Git Feature Branches

Git makes working with branches extremely easy. Especially compared to many of the version control systems that came before it. This has resulted in a standard workflow involving feature branches. The idea is to branch from master when you begin developing a new feature. You do all of your development on that branch. When the… Read More »

A confluence of tools

I don’t often write about something quite this geeky, but it is just too cool not to share. First Several months ago, I read about an interesting module for Linux called SSHFS. This module allows you to mount a file system over SSH. This gives a way to access files on another server that you… Read More »

Review of Practical Subversion, second edition

Practical Subversion, second edition Daniel Berlin and Garrett Rooney Apress, 2006 Two years ago, I reviewed the first edition of Practical Subversion. The second edition has substantially updated the reference information about the Subversion commands. The previous edition had been based on a pre-1.0 version of the program and had somewhat incomplete coverage of the… Read More »

Conversion to Subversion: Tags

In the first article of this series, Conversion to Subversion, Part I, I described the problem I found in trying to convert a project from my CVS repository to Subversion. In my last article, Conversion to Subversion: The Project’s Trunk, I described the solution that I used to convert a basic project with no tags… Read More »

Conversion to Subversion, Part I

For about a year now, I’ve been playing with Subversion on small projects. In order to protect my main repository in CVS from my experiments, I just created new projects under Subversion and worked with them there. All of my real projects continued under CVS control. This way if my experiments with Subversion were a… Read More »

Subversion

If you haven’t tried Subversion yet, you really owe it to yourself to give it a try. I’ve used CVS for over a decade now and I’ve been trying Subversion for a little less than a year. I haven’t yet moved most of my home projects to Subversion, but it’s looking more probable every day.… Read More »

Unit tests that should fail

I was doing a little research on the Java JUnit test framework and ran across the article The Third State of your Binary JUnit Tests. The author points out that in many test sets there are ignored tests as well as the passing and failing tests. As the author says, you may want to ignore… Read More »