Problem with Subversion
I'm interested in Subversion for controlling my projects, but I've notice a little problem that I can't aswer.
Imagine there are 2 users working with the source code. Normally each one have a local copy of the repository, but in this case, everytime that someone want to modify it, the have to work on the same directory. So, if both want to change a part of the source code, both will work at the same directory at the same time, so the last will destroy the first one's work.
Anyone can tell me a solution? Thanks,
Orcrist
5 Replies
So what happens if two people work on the same file? The first one to check the file in has no problems, the second person has to merge with the first person's changes. That's part of the logic of a source code control system.
Or did I completely misinterpret your question?
Adam
Most of the time, if 2 different folks are working on different parts of the code, there are usually very few conflicts. If, however, they are working on the same pieces of code, there can be occasions when manual merging is required and this takes a bit of time.
Thank a lot!
Orcrist