Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to reverse the changes from one of my checkins. In the right-click context menu of the particular changelist, there are these two options:

  • Rollback...
  • Back Out Submitted Changelist

What is the difference between these two? In what situations should I use either one?

share|improve this question
3  
In this case, 'Back Out Submitted Changelist' was the right option for my situation (only wanting to revert changes from the checkin). Thanks for the great answers. – Dave Andersen May 5 '10 at 23:40

3 Answers

up vote 89 down vote accepted

Both of these operations restore a set of files to a previous state and are essentially faster, safer ways of undoing mistakes than using the p4 obliterate command (and you don't need admin access to use them).

In the case of "Rollback...", this could be any number of files, even an entire depot. You can tell it to rollback to a specific revision, changelist, or label. The files are restored to the state they were in at the time of creation of that revision, changelist, or label.

In the case of "Back Out Submitted Changelist #####", the restore operation is restricted to the files that were submitted in changelist #####. Those files are restored to the state they were in before you submitted that changelist, provided no changes have been made to those files since. If subsequent changes have been made to any of those files, Perforce will tell you that those files are now out of date. You will have to sync to the head revision and then resolve the differences. This way you don't inadvertently clobber any changes that you actually want to keep.

Both operations work by essentially submitting old revisions as new revisions. When you perform a "Rollback...", you are restoring the files to the state they were in at a specific point in time, regardless of what has happened to them since. When you perform a "Back out...", you are attempting to undo the changes you made at a specific point in time, while maintaining the changes that have occurred since.

share|improve this answer
7  
I think "Back Out Submitted Changelist #####" will try to keep changes that were made to the same files after the given change list. – Ian Ringrose Aug 24 '11 at 12:19
@Ian: Good observation. When I wrote this I was thinking along the lines of immediately correcting a mistake. As is usually the case, should you realize you want to undo something much later, it gets more complicated. I refined my answer. – raven Aug 24 '11 at 18:52
@IanRingrose I just did a "backout" operation, and it looks like it doesn't attempt to keep the changes that were made afterwards. I had to do a sync and then resolve in order to get the changes back in which were submitted after the backout. – gdw2 Mar 22 '12 at 21:20
@gdw2, I think if you did a "Rollback" you would then not get the option to "resolve in order to get the changes back in which were submitted after the ..." – Ian Ringrose Mar 23 '12 at 13:01

Rollback... will prompt you to select a folder to rollback, ie, it will work on specific folders, and you can rollback to labels or changlists or dates. Back out works on the files in specific changelists.

share|improve this answer

Reverse a changelist submission

You cannot undo a successful changelist submission, but you can reverse previously submitted changes in two ways:

Rollback restores a file or set of files back to a specified changelist, date or revision. Any changes made after that point in time are not retained. Back out removes specific changes made at a given changelist, date or revision but allows a user to keep changes made in subsequent revisions.

For details please refer to http://www.perforce.com/perforce/doc.current/manuals/p4v/Working_with_changelists.html

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.