I searched here, but did not find any question related to this. I have a problem like this in mercury: I manage an open source project in a bitbucket, so I have a clone of the source code in my local one. But I also use this project for my own website in real time, so I made 2 clones of a bitbucket replica
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 I can click on the Bitbucket repository. But you do not want to press commit1, since it has my personal data.
I wonder how we do it in mercurial?
source
share