I typically work on small-sized projects that involve only 2-3 people working on the same codebase concurrently.
The usual routine for me is as follows:
- Scour through bug reports, pick a bug by priority, and write the fix
- Create a diff/patch (let's call it patch "alpha") of the changes to the codebase (ie: svn diff > ~/diff_alpha.patch)
- E-mail the patch to colleagues where they can visually inspect the diff against the codebase and point out errors or suggestions
- They tell me what changes are required, I put them in, and then re-email my team with the modified patch
- Once everyone agrees that the patch is good, I apply it to the codebase, merging in other people's changes if necessary, re-build, re-test, and commit.
The problem here is that I usually have to wait a couple of days for all the approvals for the modified final patch to come in, and during that time I (obviously) want to work on other patches.
If I go work on another bug and it affects the same file I'm working on in the previous patch, it means that when I want to commit the previous patch (alpha), I have to:
- Backup my current work to a new patch (ie: patch "bravo"), via svn diff > ~/diff_bravo.patch
- Revert my current working copy (svn revert -R .)
- Apply the old patch (patch -p0 < ~/diff_alpha.patch)
- Commit the old patch (svn commit)
- Apply the patch I was previously working on (patch -p0 < ~/diff_bravo.patch)
- Continue working on the code related to diff_bravo.patch
This is annoying as I generally have to hand-merged conflicts between diff_alpha and diff_bravo.
The other approach I tried was just continuing my work on diff_alpha without creating a diff_bravo. Then, when I have approval for all the code in the original diff_alpha I e-mailed out, I do the following:
- Backup my current work to a new patch (ie: patch "temp"), via svn diff > ~/diff_temp.patch
- Revert my current working copy (svn revert -R .)
- Apply the old patch (patch -p0 < ~/diff_alpha.patch)
- Commit the old patch (svn commit)
- Apply the patch I was previously working on (patch -p0 < ~/diff_temp.patch)
- Now I can continue what I was doing without having to hand-merge, but I will receive tons of fails hunks in my "patch" command as half the code in diff_temp was already committed in diff_alpha. I do not find this acceptable.
Any recommendations for handling multiple tasks/bugs on a common file so I can minimize SVN conflicts?