I want to keep some commits private on push, so I want that they get bundled into one big commit on the remote side. Locally they should remain splitted.
A use case is for example the work on a static blog. The draft steps should be commited and tracked locally but on push I want only publish released versions.
A solution in git and/or mercurial will be accepted.
In Mercurial 2.1 and later you can use phases to mark changesets as "secret". This will mark all outgoing changesets as secret:
$ hg phase -f --secret "outgoing()"
A secret changeset is not pushed or pulled by default, so after that command there wont be any outgoing changesets — adjust as needed to mark the right changesets as secret.
You also say you want the changesets as one big commit in the remote repository. For that you can use the histedit extension bundled with Mercurial 2.3 and later. Use the --keep
flag so that it wont remove the original changesets when you collapse them.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With