How many of us work in Microsoft shops? I’m ashamed to admit that I do. When I took the job, I thought the benefits of working in a new domain with new technologies would outweigh the fact that I had to use Microsoft tools and program for Windows. Well, the benefits are real. The costs are also real. And one of these costs is SourceSafe.
The worst part about it is that there’s no particularly good reason why we have to use SourceSafe. But how many of us work in shops where everyone is scared to use a real source-code control system like Subversion or CVS? And all the reasons they give for sticking with SourceSafe really boil down to “Better the devil you know…” and “I’m too busy and too lazy to improve our technical environment.” (This is also frequently the substance behind the fear of automated builds, unit tests, and so forth.)
The best reasons I’ve heard to stick with SourceSafe is that you don’t want to lose your project history—but see #1—and that it’s tightly integrated with Microsoft’s IDE—but see #3. As I said, there’s really no good reason why we have to use SourceSafe.
So, direct from the school of hard knocks, here are the top 8 reasons why software teams everywhere, even in Microsoft shops, should abandon SourceSafe:
8. Links are dangerous.
Let’s say you have a branch, linked to a certain version of the baseline. Then check-out from the shared copy, SourceSafe won’t “branch” automatically. You have to branch manually, and if you do it wrong, you’ll end up checking out the wrong version of the file. I’ve personally seen this happen multiple times to multiple developers, and it’s a pain to fix.
7. You must check in changed files and add new ones in two separate operations.
This is just the nature of the interface. And it means lots of change sets checked in wrong. Because the changed files got checked in, but the new files didn’t get added.
The best you can do is
- Find all differences between the repository and the project’s directory tree. (This will take a long time.)
- Select and check in changed files from the list of differences.
- Select and add new files from the list of differences.
That’s still two separate operations, but at least the changed and new files are listed next to each other. This means it’s more difficult to forget to add the new files.
Of course, there will frequently be tool-generated files you don’t want to add that will appear in the same list of differences. But you have to deal with them in any case.
6. Rollback does not undo a change.
It tries to undo changes. But rolling back a file breaks any links to that file, which affects other things in the repository. It is a myth that if you accidentally check in a change that you can “just go back to what you had before.” You can’t. What you need to do is:
- Get an old version of the file.
- Check out the latest version without overwriting the old version on disk.
- Then check in the old version as an even newer version.
Of course, other source-code control systems either force you to do this or they offer a rollback feature that actually works.
5. Cross-branch merges don’t.
You want to merge all changes from a branch of a project back into the baseline. How do you do it? Short answer: You can’t. Long answer:
- Find a file that’s been changed in the branch.
- Click on the analogous file in the baseline.
- Use the “Merge Branches” function.
- Repeat for each of the hundred or so files in an average project.
Alternatively, you can get the branch into its own working directory and manually sift through the changes using a third-party merge tool.
4. You can’t tell which version a label applies to.
… at least not easily. The way to see the labels is through the project’s history. But the history only shows when the label was applied, not to which version of the file it was applied. So, label an old version of a file, then look at the history. It will look like the label is on the latest version of the file. But don’t be fooled!
The only way to tell what version a label applies to is:
- View the file’s history.
- Click on the label’s history item.
- Click the “Details” button. This will show the version of the project the label was applied to, but not the version of the file.
- Click “Previous” to display the details of the previous history entry.
- Click “Next” to display the details of the history entry you actually wanted to see. Now, the display will show the file’s version, as you want.
3. Visual Studio isn’t actually integrated with SourceSafe.
Yes, Microsoft’s IDE supports SourceSafe commands, but these commands may or may not work as you expect them to—or at all. Depending on the project configuration, the project directory, your development directory, which applications are currently running, which instances of Visual Studio have recently quit and how they were configured, and the number of fruit flies currently airborne within 300 yards of your current location.
2. You can’t delete a file multiple times from the same directory without first destroying the file’s history.
You can delete a file once. Then you can create a new file with the same name. But if you want to delete the second file, SourceSafe won’t let you. First you must destroy all record of the previous deleted version. If you choose to do this, historical versions that use the old file will be incoherent. Alternatively, you can undelete the old file, in which case interim versions that expect the file not to be there will be incoherent.
1. You can’t trust SourceSafe to give you an historical snapshot of a project that will actually build.
There are so many ways to frell the repository, just don’t use it except with current development.—but see #5 and #7. Better yet, just don’t use it.
If a particular snapshot of the source code is important to you, for example, because it’s a released version, save a copy of those files in a more reliable repository, like a separate directory on disk.
In conclusion…
SourceSafe is one of those things average developers use. It requires a host of rules, workarounds, and trade-offs and generally just gets in the way. But we bear with it because it’s what we’re used to. And besides, the pain is not all that great. It’s kind of unfair for me to list all these problems in one place as though they were nagging at us every day. They’re not.
But they do get in the way. Average developers just work around the defects. Effective developers, however, make the computer work for them. They will put in the up-front effort to transition to a new tool if it means they won’t have to waste precious brain power hacking with it over the long term. That leaves more brain power to work on actual programming problems.
What’s the difference between average developers and the best developers? The best developers are perhaps more skilled. But skill is overrated. The biggest difference is that the best developers are more effective. They know how to improve the process in order to get the most important things done better.
And this is something that anyone can learn.
-TimK
I’ve just installed subversion, after using SourceSafe for the last 6 years. And it was really easy to install and use. It had good documentation based on the FAQ. It’s also very easy to remove if you don’t like it. So there is no reason people shouldn’t at least try it out.
Thanks for the review, Trond. CVS is similarly easy to set up and try. (But try Subversion first.)
I just realized I forgot to include the links to the Subversion and CVS web pages. Here they are:
Subversion is at http://subversion.tigris.org/.
CVS is at http://www.nongnu.org/cvs/. See also http://ximbiot.com/cvs/wiki/.
-TimK
And if you are in a MS shop using Visual Studio, check out: http://ankhsvn.tigris.org/
Of course TortoiseSVN ( http://tortoisesvn.tigris.org/ ) is still very nice to have as well.
Thanks for the pointer, Damien.
-TimK
The one place where I worked that we used SourceSafe we called it “SourceUnSafe” because we lost the baseline so many times. I’ve been using CVS with WinCVS for a few years and recently switched to Subversion and TortoiseSVN. I found both CVS and Subversion easy to install and use.
Can anyone recomend an open-source bug tracking tool that integrates well with Subversion?
[…] 2 years ago, I posted a list of reasons to abandon SourceSafe. Now, since I’m hacking with Microsoft Visual Studio again on this project, I happened to run […]
I’ve never used VSS, but I have migrated from CVS to SVN –
and SVN simply rocks!!
It is very reliable, quick, there are lots of GUI clients (#1 choice is Tortoise, but SmartSVN is also good for Linux/Mac), and connectors (Eclipse: Mylin, Trac: built-in, Bugzilla, Mantis). It is also good when using console (Linux) for server-updates.
> Can anyone recommend an open-source bug tracking tool that integrates well with Subversion?
– Trac http://trac.edgewall.org/
it is perfect for small-to-medium web-projects, but can also be used for simple task-tracking and as document-management-system for purposes other than software-development.
The only constraint (correct me if I’m wrong): Trac must be installed on the same machine where SVN-Repository resides (but you can always create a symlink to a network-dir).
Well, as everything in this world evolves, my colleagues are already suggesting to move on to GIT.
Thanks for the tip about Trac.
Git can be a useful and powerful tool, especially if your developers are geographically separated or you do a lot of branched development. Git is powerful enough that after you’ve pointed it at your foot and blown your foot clean off, Git can reattached it. The thing is, this power is not readily accessible. The documentation is sometimes confusing. And the command structure is neither orthogonal nor consistent, and you may be spending hours searching for the simple command to undo the minor accident you just caused by using the wrong command option, because you thought it was the correct one for what you wanted, but it wasn’t. (It was just described poorly in the documentation.)
So, if you decide to migrate to Git, start by deciding to build up a custom command-line structure, or at least a cheat-sheet. And expect to make numerous, expensive mistakes along the way.
-TimK
[…] the calls to Substring and Remove. The fact that this code has been in our source control (which is VSS, of all things in the year 2010) says a few […]