My first question here and I have not seen it addressed elsewhere. I work in a research institute so we'd like to be able to say which code version produced a particular set of results. My question is whether my analysis is correct as shown in the illustration below (Note that the version node id's are for illustration purposes only and do not correspond to actual version id's in SVN, Git, or Hg. Version numbers with letters represent uncommitted code state in SVN, whole number version id's represent committed state in SVN, all version IDs in Git/Hg box represent committed code state):

Example scenario:
Suppose there are two working copies "A" and "B" that start from revision 1.
"A" revises the default values in function
foo(), generates results, and checks-in the version (repo ver2)."B" does not revise
foo()but some other part of the code, uses the old default values to generate results, and attempts to check-in the as-used version 1b. It fails because an update is needed, but in the process of merging version 2 and 1b, SVN will lose the fact that version 1b used different default values infoo(). This is not detected as a conflict since "A" and "B" did not change the same part of the code. Version 3 is not identical to Version 1b, so replicability is not guaranteed.
I cannot simulate this scenario in my local drive using TortoiseSVN (I cannot create working copies because of SVN Checkout error — "Unable to open an ra_local session to URL"). I do know for a fact that both Git and Hg will handle the situation properly and show version 1b in the history if it was committed and if the rebase feature was not used. (I believe rebase is essentially the normal behavior in SVN when no branches are involved.)
Is this analysis correct?
hg diff, am happy with the changes and then runhg commit. If we're unlucky, you've made a change between my two command and so I'll commit something I didn't intend! – Martin Geisler Jan 13 '12 at 23:15