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