Reputation: 187
We use the Subversion version control system in our company. It's good for combination work but if two users work at same time on the same file, the system returns a conflict after commit.
I don't have any clear solution for preventing from this type of problem.
Is there any better solution than SVN for teamwork?
PS: All the users use the same user name for the SVN server.
Upvotes: 0
Views: 400
Reputation: 8979
There is no VCS that will solve your conflicts automatically, though some will merge better than others. I think the same sequence of changes on a file will result in a conflict in any VCS. The solution is to make your projects more modular, have more focused developer areas, try to break work in smaller commits and make updates more often.
Upvotes: 4