This question is regarding version control.
If two developers are committing the same php file at same
time what will happen ? What error it will show (if any) ?
Answer Posted / jp
It just basically depends on what kind of version management
software you're using·
As far as I'm concerned, if you're using a Subversion
server, then one of the people will have to wait until the
other commits the file. The records are blocked so can't be
edited by two or more people at the same time.
So when one fully commits their files, the other person will
see a 'conflict', because of their revision being older than
the revision on the SVN Server. They can solve the conflict
by marking 'Solved', and decide which file will stay on the
server, either the previous one, the one that you have or
the one that the person just committed.
| Is This Answer Correct ? | 7 Yes | 1 No |
Post New Answer View All Answers
Where are php configuration settings stored?
How can we submit a form without using submit buttons?
How to remove white spaces from the beginning and/or the end of a string in php?
Which php mvc framework is best?
What are the delimiters in php?
When to use self over $this?
What is the difference between the functions strstr() and stristr()?
What are the advantages of indexes in php?
How does php serialize work?
What do the initials of php stand for?
How to get the http request in php?
What are php magic methods?
What is php how it works?
So if md5() generates the most secure hash, why would you ever use the less secure crc32() and sha1()?
What are the features and advantages of object-oriented programming in php?