I'm fairly new to Github and would like some advice how to arrange my workflow.
We have a small web application that we run on Mac Mini's using XAMPP. We have several Mac Mini's throughout the country and I was looking for a good way to manage the software and update it, because I was getting really frustrated with all the different versions.
The thing is that some files of the software are shared, but some files are specific for each client/Mac Mini. I'm looking for a easy setup so I have to change the common files only once and still have specific files (like templates) for each client. The current situation is this:
- I have 1 software folder in my htdocs directory
This folder has both specific and both common files in the root, like this:
- sharedfolder
- shared.html
- specific.html
- specificfolder
- mediafolder (which I will ignore and not put on git)
I'm looking for the best way to manage this. I did some research on this topic, but I hope someone can advice me for this specific situation. I feel I have the following options:
Put everything in 1 repo but with the specific files in separate branches (do I have to push the changes to the common files to each client branche after a update?)
Use 2 repo's (and use .gitignore the separate the common files from the specific files). 1 with the common files and 1 with the client specific files (in separate branches). My early research told me that this isn't possible because everything is in my root and not a specific directory
Use git-subtree
Use git-submodules
Use gitslave
Anything else?
Ideal I'm looking for a solution that can be managed with a OSX Git GUI.
About my workflow. I hope that I can make all the changes to the code directly from my software folder in htdocs. If I only make changes to the common files I want to commit this to the common repo of course. If I make changes to a specific file I want to first connect to the right branche or repo and then update this. I'm sorry for the incorrect terminology, but I hope it is still clear enough.
Would be very nice if someone can point me in the right direction.