vote up 9 vote down star
3

When I'm online it seems that everyone has agreed that using the exclusive locking workflow in source control is a Bad Thing. All the new revision control systems I see appear to be built for edit and merge workflows, and many don't even support exclusive locks at all.

However, everyone I work with is of the opinion that exclusive locks are a "must have" for any source control system, and working any other way would be a nightmare. Even recent hires from other companies seem to come in with this idea.

My question isn't who is right. I'm pretty sure what answer I'd get to that. My question is, is there really still any debate over this matter? Is there an honest "pro locking" camp out there that makes a serious case? Is any work being done to advance the art of revision control based around the locking model? Or are locking fans flogging a dead horse?

EDIT: The answers so far have done a good job of explaining why exclusive locks are a good feature to use occasionally. However, I'm talking about promoting a workflow where exclusive locks are used for everything.

flag

60% accept rate
Well, they are perfectly fine if you absolutely need to ensure that a project is not going to deliver. But then you should also split the project over at least two different organisations that are not co-located, and preferably outsource part of the project. – Stephan Eggermont Jul 20 at 21:15

8 Answers

vote up 0 vote down

The arguments for locking are really bad. They basically say: our tools are so bad they cannot merge, so we lock.

link|flag
Actually, around here they insist merging itself is a nightmare that must be avoided. Not quite the same thing, at least in their minds. – T.E.D. Jul 10 at 13:16
Well, they are wrong. Merging is easy. As long as you do it often and use "the right tools". If merging is painful, the work is not split up correctly. That is the problem, not the merging – Stephan Eggermont Jul 10 at 13:28
vote up 0 vote down

Addressing your edit comments.

Even RCS and SCCS (the grandfather VCS for most of what runs on Unix/Linux these days) permit concurrent editing access to files, and I'm not referring to separate branches. With SCCS, you could do 'get -k SCCS/s.filename.c' and obtain an editable copy of the file -- and you could use an option ('-p' IIRC) to get it to standard output. You could have other people doing the same. Then, when it came time to check-in, you'd have to ensure that you started with the correct version or do a merge to deal with changes since your starting version was collected, etc. And none of this checking was automated, and conflicts were not handled or marked automatically, and so on. I didn't claim it was easy; just that it could be done. (Under this scheme, the locks would only be held for a short time, while a checkin/merge was in progress. You do have locks still - SCCS requires them, and RCS can be compiled with strict locking required - but only for short-ish durations. But it is hard work - no-one did it because it is such hard work.)

Modern VCS handle most of the issues automatically, or almost automatically. That is their great strength compared to the ancestral systems. And because merging is easy and almost automatic, it allows different styles of development.

I still like locking. The main work system I use is (IBM Rational) Atria ClearCase; for my own development, I use RCS (having given up SCCS around Y2K). Both use locking. But ClearCase has good tools for doing merging, and we do a fair amount of that, not least because there are at least 4 codelines active on the product I work on (4 main versions, that is). And bug fixes in one version quite often apply to the other versions, almost verbatim.

So, locking-only VCS typically do not have good enough merge facilities to encourage the use of concurrent editing of files. More modern VCS have better merging (and also branching) facilities, and therefore do not have as strong a need for locking for more than the shortest term (enough to make the operations on the file - or files in the more advanced systems - atomic).

link|flag
vote up 1 vote down

On an open-source project like a game, it makes sense to keep images under revision control, and those are nice to be able to lock (Subversion supports this). For source files, it's better to get into the edit-merge work flow. It's not hard and increases productivity in my experience.

link|flag
vote up 1 vote down

Exclusive locking is the best you can do in a worst-case scenario, so its presence always tells me that there are bigger problems.

One of those bigger problems is bad organization of code. On one of my consulting gigs for a major telecomm, eight out of thirty team members were constantly working on the same source file (a VB.NET "god" form). We would wait for someone else to finish their work and release the exclusive lock (VSS), then the next person in the pecking order would immediately lock the file to apply their changes. This took forever because they had to reintegrate all their work into the new code that they could see only just then. Since I was the new guy, I was on the bottom of the pecking order and I NEVER was allowed to check in my code changes. I eventually went to the project manager/director and suggested that I be tasked with another part of the application functionality. This project eventually self-destructed, but most of us left as we realized that inevitability. Note that the use of VSS integration was a crucial part of this failure, too, since it forces early acquisitions of that precious file lock.

So, a well-organized project should almost never result in two people working on the same part of the same source file at the same time. Therefore, no need for exclusive locking.

Another of those bigger problems is putting binary files into source control. Source control tools are not designed to handle binaries, and that is a good thing. Binaries require different treatment, and source control tools cannot support that special treatment. Binaries must be managed as a whole, not as parts (lines). Binaries tend to be far more stable/unchanging. Binaries tend to need explicit versioning different from source control versioning, often with multiple versions available simultaneously. Binaries are often generated from source, so only the source needs to be controlled (and the generation scripts). See Maven repositories for a binary-friendly storage design (but please don't use Maven itself, use Apache Ivy).

link|flag
vote up 7 vote down

If you're used to exclusive locking, then it's hard to embrace the edit-merge workflow.

Exclusive locking has its benefits, especially for binary files (images, videos, ...) which can't be merged automatically or not at all.

But: the need for exclusive locking always indicates another problem: good communication between people working on the project. Exclusive locking provides a poor replacement: it tells users that someone else is already working on that particular file - something they should know without using a version control system.

Since there are better ways to help with the communication among team members, most (all?) version control systems don't implement exclusive locking anymore or just a reduced version (i.e., locking, but such that those locks are not enforced).

It's not the job of a version control system to help with the communication.

link|flag
You could also mention that the modern distributed version controls don't even have any way to get a lock since there is no real-time communication between the repositories. – Hudson Jan 14 at 23:42
Certainly not ALL version control systems don't provide exclusive locking - Sourcegear Vault for one does. In fact it's turned on by default. – tomfanning Jun 29 at 8:27
vote up 1 vote down

If you believe that merges are hard (and while we've come a long way, they can be in some circumstances), and you don't have programmers frequently wanting to edit the same file, exclusive locking isn't necessarily that bad.

I wouldn't use them on an open source project, obviously, but in the corporate world where the rules are stricter and you can walk over to a guy and say "can I break your lock?", it gives visibility into what people are working on and avoids conflicts so they don't have to be resolved later.

If two people really need to work on a file at the same time, often you can branch that file, and so long as the tool makes it clear that that branch needs to be merged back in, you can do that and resolve any conflicts then.

That said, I don't think I want to have to work in an exclusive locking world again.

link|flag
Hmmm. I'm thinking your insight about it being a far worse model in an OpenSource project might be a very salient point here. That would also explain why folks on the 'net seem to hate that method so much more. – T.E.D. Jan 14 at 23:46
vote up 1 vote down

Here's my $0.02.

Locking is an old school of thought for textual Code. Once programmers use merging a couple of times they learn and usually like the power of it.

Valid cases for locks still exist.

  • Graphics alterations. 99% of the time you cannot merge 2 peoples work on the same graphic.
  • Binary updates.
  • Sometimes code can be complex/simple enough to justify only 1 person working on it at a time. In this case it's a project management choice to use a feature.
link|flag
The three cases are no valid reasons for an exclusive lock. There is a difference between an indicator that someone else is working on it and a lock. – Stephan Eggermont Jul 10 at 13:48
@Stephan: Explain why they are not valid in depth please. Also what revision control package contains this indicator function that you speak of? I have used subversion almost exclusively and to the best of my knowledge there isn't an "indicator" action in it. – J.J. Jul 15 at 23:32
vote up 5 vote down

I like having the option to exclusive-lock some file[s].

Having an exclusive lock is necessary, e.g. for binary files.

It's also semi-necessary for some machine-generated non-binary files (e.g. for Visual Studio project files, which don't 'merge' at all well if ever there are two parallel changes to be merged).

link|flag
Good point hadn't thought about the VS files. – J.J. Jan 14 at 19:11
Both of those cases (binary files and VS files) help illustrate why they don't belong in source control. Source control is for source: text files that contribute to producing an automated solution. VS files are not source, they are developer-specific tool configuration. – Rob Williams Jan 14 at 20:11
1  
VS Project don't merge well not because they're VS project files, but because they're XML. Most merge files do a very bad job dealing with XML in general. That doesn't mean they shouldn't be versioned. They absolutely should. Hopefully you can find a VCS that lets you switch merge tools. – Darcy Casselman Jan 14 at 20:52
@Rob I'm thinking of VS files like the *.csproj files (for C#) or *.vcproj (for C++) or *.sln: these aren't exactly source files, but they are [like] makefiles, not developer-specific, must be version-controlled, shared and edited by all developers, and the software can't be built without them. – ChrisW Jan 14 at 21:06
I've never had any problems with merging csproj or sln files... I always merge those by using the merge tool though, just to be sure that it does what I think it will. And usually it does :) – Svish Jun 10 at 7:43
show 7 more comments

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.