Concurrent Development Style - Per User Setting?

This forum is now locked, since Gold Support is no longer offered.

Moderator: SourceGear

Locked
mshe
Posts: 38
Joined: Tue Nov 29, 2005 4:18 pm

Concurrent Development Style - Per User Setting?

Post by mshe » Fri Dec 16, 2005 12:56 am

Is the Concurrent Development Style a per user setting or a global setting?

If it's per user, would there be any problems if I use CVS style while someone else uses the exclusive lock model?

Also, is the CVS style compatible with VS.NET 2003?

Thanks!

lbauer
Posts: 9736
Joined: Tue Dec 16, 2003 1:25 pm
Location: SourceGear

Post by lbauer » Fri Dec 16, 2005 9:12 am

Concurrent development style is a client-side setting and is not global.
With CVS mode you can edit a file without checking it out. If other users are using exclusive locks on the same files you're editing, you would not be able to commit your changes until they checked in and unlocked the files.

We don't recommend using CVS mode if you work with the IDE, as Visual Studio expects VSS style -- checkout, edit, checkin.

For further informaiton see this link:

http://support.sourcegear.com/viewtopic.php?t=4735
Linda Bauer
SourceGear
Technical Support Manager

gsmalter
Posts: 115
Joined: Sat Jul 09, 2005 11:13 am

Post by gsmalter » Sat Dec 17, 2005 10:32 am

I've had some success using non-exclusive checkouts in VS2005 and then merging if there are concurrent edits.

Locked