Question from a Git newbie: I have a project in a Git repository, parts of which I would like to make available as OSS. For practical reasons, the repositories of the private and the public parts of the project will have to be different, while all development will happen in the private repository. At certain points in time, I would like to update the OSS version with selected commits from the private version.
Right now, I have a remote branch of the private repo setup in a local mirror of the public repo and I am using git cherry-pick
to copy the interesting commits from the remote branch of the private repo to master branch of the public repo, which I then push. However, since the private development is moving very fast, cherry picking can be very time consuming.
Are there any suggestions on how to make the workflow a bit better?