vote up 4 vote down star

Is there currently a feature that allows a exclusive checkout in SVN?

and

Is there a good plugin for Delphi that allows the access via IDE?

flag

Welcome to Stack Overflow. For future reference, this really should have been two separate posts, not two questions in a single post. – Rob Kennedy Jul 15 at 15:34
Okay, thanks for the advice. – pr0wl Jul 15 at 16:35

6 Answers

vote up 8 vote down check

SVN has a concept of "locking" which roughly corresponds to the exclusive checkout. For example, in TortoiseSVN this is exposed via Get lock and Release lock menu entries.

JCL contains a SVN version control expert which works quite fine. Besides other things, tt gives you access to the locking functionality from the IDE.

link|flag
vote up 7 vote down

TortoiseSVN can be added into the Delphi tools menu. I've not tried this myself, since I'm happy using it as an Explorer extension.

Regarding the exclusive checkout, I'm guessing you mean so only one person can edit it at a time? That's not really the idea behind Subversion, the idea is you have working copies and then check in your changes. It'll then try to merge your changes in (this usually works most of the time). If there are conflicts you'll need to resolve them manually.

link|flag
How are these conflicts put visible? For example if somone changes a parameter from string to int. – pr0wl Jul 15 at 16:33
If someone is making a simple change like that, you won't see a conflict, it'll merge it in on commit. If say you have someone change a string to int and you also change the same string to a real then you would have a conflict. The conflict would be visible when committing and you'd have options on how to resolve it. See this url for more info - tortoisesvn.net/docs/release/… – Pauk Jul 15 at 17:43
vote up 0 vote down

What do you mean by "exclusive checkout"? Do you mean that after you check out, nobody else can check out?

That's called a lock and subversion can do this (see Locking), though it's not recommended in general as the purpose of version control is to allow multiple people to simultaneously work on the versioned item.

link|flag
You're right. I meant that nobody can check out after I did it until I commit when the lock is disabled. – pr0wl Jul 15 at 16:36
vote up 0 vote down

For first part, I was using Visual Source Safe which is support locking (you have to check out before use), SVN has locking command, but it's against it's concept, you need few time to get used with it, and you will never use the locking command again.

For second part of your question, The TortoiseSVN can be used as external tool, or you can get it working with File Browser bundled with Delphi 2007 and above, and you can use IBrowser which work with older versions.

and Subversion add-ins for Delphi summarize the available SVN plug-ins for Delphi IDE, beside SourceConneXion which is commercial product.

link|flag
vote up 2 vote down

I believe one of the reasons why people sometimes enquire about locking items in a Subversion repository is because they have their Delphi DFMs saved in a binary format, which makes committing/merging problematic.

An alternative to changing DFMs etc to text is use Scooter Software's Beyond Compare.

Beyond Compare is written in Delphi, and natively knows how to read binary DFMs. This means that it then becomes less of an issue (or even no issue) whether your DFMs are stored in Subversion in binary or text. Beyond Compare V3 also does 3-way merging which makes it really easy to merge multiple commits etc. Even ignoring the ability to diff binary DFMs, it's still a much better diff viewer than TortoiseSVN's built-in tools. I can highly recommend it, and it's very inexpensive.

Currently the only things that I lock in our repository are COM type libraries (*.tlb and their associated *_TLB.pas files).

link|flag
Interesting point about binary form DFMs but there are pretty easy to convert to text on mass. Since Delphi 1 there has been a file called Convert.exe in the bin folder which will do that. E.g. convert -i -t -s c:\files*.dfm – Pauk Jul 15 at 23:18
Also, +1 for Beyond Compare, it's a great app. I must admit I prefer it to TortoiseMerge. – Pauk Jul 15 at 23:19
We use an in-house tool as part of our internalisation process which (currently) requires our DFMs to remain binary. Using Beyond Compare makes this legacy restriction a non-issue for us. Whether a DFM is binary or not is now irrelevant since BC will happily compare binary and non-binary versions of the same DFM for example. – Conor Boyd Jul 16 at 21:04
vote up 1 vote down

Regarding exclusive checkouts. It can be done, but it's a pain and generally not worth the time. If you do have dfms saved as binary, convert them to text.

Regarding delphi addins, I have a post at Delphi addins for subversion.

I use the jedi jcl, and TortoiseSvn.

There are also Delphi svn and Delphi addin in for Tortoise svn that I know of.

link|flag

Your Answer

Get an OpenID
or

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