I have searched here, but haven't found any question related to this. I got a problem like this in mercurial: I manage open source project in bitbucket, so i have clone of the source code in my local. But I also using that project for my own live site, so I made 2 clone of bitbucket repo
Bitbucket Repo
|
==local_clone1
|
==local_clone2-> commit1 => commit2 => commit3
(personalization) (bug fix) (add feature)
The question is, I want to push commit2 and commit3 back to local_clone1, so later on I can push to Bitbucket repo. But don't want to push commit1, since it has my personal data.
Wondering how we do that in mercurial?
push -r commit3and commit1 wouldn't go. The key is to ask yourself "what is the earliest changeset that could be this commit's parent" and update to that before creating the changeset. Branches, etc. are just abstractions to make remembering to do that a little easier. – Ry4an Nov 15 '10 at 5:12commit1iscommit0, then Ry4an is saying, update tocommit0before doingcommit1and again before doingcommit2(becausecommit2doesn't depend oncommit1). Then you effectively have 2 branches:commit0 -> commit1andcommit0 -> commit2. You can pushcommit2without pushingcommit1, and in your local clone, can mergecommit1andcommit2to get all your changes combined. The same applies tocommit3if it doesn't depend oncommit2. – shambulator Nov 15 '10 at 10:16