Git-flow for multiple intermediate / production environments

I am trying to apply git -flow for a project with multiple websites that use the same code base.

Currently, I use many branches of functions, one branch of development, one branch of support and MANY sectors of production: one for each site, as some configuration files are configured for each site.

The git thread tool does not offer many main / production branches, but one. What can I do?

+6
git git-flow git-workflow
source share
1 answer

Honestly, this sounds like an application configuration issue - not a git issue.

We found ways in our systems to support overwriting files โ€” when the system first searches for its own file and refuses by default.

If you cannot dynamically tune the application at run time, I would follow the build process, which would overwrite during deployment.

0
source share

All Articles