How to use svn when two programmers are working on same file in same project?
do one programmer need to wait before other programmer commits his work on that file?
How to use svn when two programmers are working on same file in same
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
do one programmer need to wait before other programmer commits his work on that file?
To make sure two or more devs can work on same file at the same time is one of the purposes of any VCS. Most of the modern VCS, includes SVN, provide very advance conflict resolution mechanism.
If you happen to be working on the same file, changing the same line as your peer/s– you can easily resolve it.
If you are working on difference places in the same file, SVN will merge the changes reliably and elegantly.
So, do not worry; and do not stop working on code thinking someone else might be editing it. 🙂