Setup:
1 GIT repository which contains client/server/shared code, currently on 1 branch.
Build process:
- The client is a web-based application and needs to be minimized/bundled/etc, which results in one file
- The server remains the same for now, although it might be bundled later on
Problem:
I do not want all files to be on my production server, just the bundled version of the client and the server folder. If I would pull the master branch in, I get all files and not just the bundled version.
Solution:
??? - How do I have to handle this? Create additional repository, create multiple branches? How is this typically done?