What`s the difference between this 2 commands (i want to rollback to revision 1):
hg update -r 1
hg backout -r 1 --merge
(in the example tip revision is 3)
|
|
What`s the difference between this 2 commands (i want to rollback to revision 1):
(in the example tip revision is 3)
|
|||
|
|
|
|
To start with, update -r 1 will undo revisions 2 and 3 in your working directory, whereas backout -r 1 --merge will undo revision 1, while keeping revisions 2 and 3. But there's a more fundamental difference:
before:
after revert:
after backout --merge; commit
Because revert only affects the working directory, it is invisible to any user that clones your repository. They will end up at 3 before and after revert. Whereas after backout, they will end up at 5, which does not have the changes done by 1. |
||
|
|