I have a project that is open sourced using git for revision control. Soon, I am going to release a premium hosted version of the project as well, but there will be changes made to the code specifically for the premium hosted version (performance, etc.), that should not exist in the open source version.
I want to avoid having two separate directories/projects, because if I fix a bug in the open source version, that bug is most likely in the premium hosted version as well. I don’t want to make changes in two places.
What is the best way to manage this? Simply branching in git won’t work right, because some files need to have 2 versions: an open source version and a premium hosted version.
And yet, branching should work, and will allow you to maintain two separate versions.
If you have a bug which applies to the premium version, fix it on
master, and merge it onpremiumbranch.Git will only merge what has changed since you branched between
masterandpremium, ie your bug fix.On another way to publish an hotfix both in
masterandpremiumwould be to do it from the common ancestor: see “Git merging hotfix to multiple branches“.Update 2015: git 2.5 (July 2015) has replaced
git-new-workdirpresented below by the new commandgit worktree add <path> [<branch>].For more, see “Multiple working directories with Git?“.
Original answer 2012:
me-and mentions in the comments the command git-new-workdir.
See:
git-new-workdir“git-new-workdir“