I want to have the following version structure:
(my private changes to 0.1.0) - A - B - C - ...
/
(upstream repo) - 0.1.0 - 0.2.0 - ...
\
(my private changes to 0.2.0) - D - E - F - ...
I don't want to merge my changes with changes in upstream, because the upstream is developed rapidly and usually there are zillions of hard to resolve conflicts, because upstream code was significantly redesigned. When 0.3.0 is out, I'm going just to create an exact copy of it forgetting my private changes and then re-apply my private fixes one by one. But I don't want my old changes to disappear completely - I want them to sit somewhere still (on a separate branch?).
git rebase is not what I want. According to http://book.git-scm.com/4_rebasing.html rebasing will try to re-apply A-B-C patches to 0.2.0. Here is an example situation between upstream 0.1.0 and 0.2.0 release dates:
(upstream) - 0.1.0 - (my master) - A - B - C
Now 0.2.0 is out:
(my master) - A - B - C
/
(upstream) - 0.1.0 - 0.2.0
I don't want to rebase my A - B - C changes because of too many conflicts. I want to label my A - B - C branch as 'my-0.1.0' and start a 'new' master branch from 0.2.0:
(my-0.1.0) - A - B - C
/
(upstream) - 0.1.0 - 0.2.0 - (my new master)
I want my new master branch to be a clean copy of upstream 0.2.0, without any attempts to re-apply my old A-B-C changesets to it. So later I can cherry-pick A-B-C changes one by one if I need them in post-0.2.0 world.
How do I put the my-0.1.0 label? Is it a label, a tag, a branch? How do I start an empty master branch off 0.2.0? Note that there are two different repos: my repo and upstream repo. Do I need to copy upstream branch from upstream repo to my repo? How I ensure that 0.2.0 is pulled after 0.1.0, and not after C? If I just do a pull request after
(upstream) - 0.1.0 - (my master) - A - B - C
I get
(upstream) - 0.1.0 - (my master) - A - B - C - "0.2.0 merged with ABC"
which is not what I want.
Also sometimes I want to push certain change (e.g. E) back to upstream. Is it possible to create a pull request for E change only? In darcs this is possible. If it's not possible with Git/GitHub, then I will need to create a separate branch, reapply the changes in E manually. How should I proceed?