How to use Git over multiple similar systems
- by Spidfire
I have a system I need to duplicate over several systems and make minor changes like change less/css variables and configuration files.
Is there a best practice for these kind of problems?
I currently do:
git clone repo
cp ../default/config.js config.js
... for several files
or should I create different branches of the same repo
or should I create an repo for the changes?
It is currently doable but it will get annoying if I get more than 5 similar systems.