Revision control locking: Is the jury still out?

前端 未结 12 1370
不知归路
不知归路 2020-12-25 13:53

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 app

12条回答
  •  执笔经年
    2020-12-25 14:22

    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.

提交回复
热议问题