This may sound like a very basic question to some of you but I am new to subversion and would like your advice on this question:
How should I handle a large commit that took several days of work to code if person B also modified and committed his changes before me? His commit concerned the same files as me.
To sum up, here is the workflow:
- Commit A based on rev.1, not pushed yet
- Commit B based on rev.0, already pushed, creating rev.2
Is it risky to push commit A given the amount of code that has been changed between rev.1 and rev.2?
Sorry for the noob question but I just want to avoid breaking the project's code. Worst case scenario, I rewrite my part of the code, checking out the repo to rev.2 before.