1

I want to checkpoint/commit stages (locally) using mercurial, knowing well that these changes would break the build if I pushed them to the remote repository. What I would like to do is fold/collapse/accumulate these changesets into a single changeset that I can push. I do not want the the remote repository to have these intermediate checkpoints in its history. I would like all recorded versions on the remote repository to at least build properly.

Is there any simple way to do this, perhaps an extension. I would have assume that this would be a selling point of a DVCS.

san
  • 4,144
  • 6
  • 32
  • 50

1 Answers1

2

or

Pulkit Goyal
  • 780
  • 4
  • 20
Lazy Badger
  • 94,711
  • 9
  • 78
  • 110
  • Thanks. Also found this http://mercurial.selenic.com/wiki/CollapseExtension now I have to find out which is the easiest to use. In case you have preference for one or the other I would like to know. – san Jan 27 '14 at 03:00