Source Control for One
31-Dec-2003 Filed in: Software
Development
Eric Sink, whose company, SourceGear, publishes a
source control product called SourceGear Vault, announced that
they are now offering a single user license for
$49.
He has an excellent article about why to use source control on projects with one developer and a follow up.
To his list of reasons, I'd add these:
He has an excellent article about why to use source control on projects with one developer and a follow up.
To his list of reasons, I'd add these:
- It enables Daily Builds. You can't build on a clean machine from the source on your drive. You need there to be an official, working version of the source.
- It enables bug fixes to released versions. Using labeling and branching features, you can fix a bug in a released version to a user without also giving them every change you've made since then. This is important no matter how many developers you have.
- It enables binary search bug fixing. Outlined in this JoelOnSoftware article, it's simply a way of finding a bug by systematically trying each archived build until you find the one that introduced the bug. Then you check the log entries to see what you did.