Get back to a specific changeset
Is it possible, using SCM, to get back to a specific changeset for which I have the UUID? I'd like my local sandbox to be an exact replica of the state of the local sandbox of the other developper when he or she delivered the changeset. How can I do this?
An equivalent to 'git checkout 1234567ab' or 'svn checkout url://repo/path@1234'...
I didn't find any equivalent to this option in the scm load command...
An equivalent to 'git checkout 1234567ab' or 'svn checkout url://repo/path@1234'...
I didn't find any equivalent to this option in the scm load command...
One answer
In the future, your developers could create baselines before delivering to an integration or team stream. This would make it easier to revert to a state before the delivery. You may want to create a snapshot for bigger or riskier changes affecting multiple components.
For the unforeseen circumstances, you can discard the change set and everything delivered after it to get your component at the state it was before delivery. You wouldn't be able to tell what the configuration of the other components in your repository workspace was at before delivery though.
For the unforeseen circumstances, you can discard the change set and everything delivered after it to get your component at the state it was before delivery. You wouldn't be able to tell what the configuration of the other components in your repository workspace was at before delivery though.