How to do simultaneous builds in two Git branches?
Posted
by james creasy
on Stack Overflow
See other posts from Stack Overflow
or by james creasy
Published on 2010-04-09T19:26:57Z
Indexed on
2010/04/09
19:33 UTC
Read the original article
Hit count: 156
I've looked at git-new-workdir, but I don't want the history to be shared because the branches have a release-main relationship. That is, changes in the release branch I want to propagate to the main line, but changes in the main line I don't want in the release line.
A common pattern for me is to fix a bug in the release line, integrate it to the main line, then start builds in both branches at the same time.
Is there a way to do this with git-new-workdir, do I need to clone, or is there a better solution?
Thanks
© Stack Overflow or respective owner