How to use Git over multiple similar systems
Posted
by
Spidfire
on Server Fault
See other posts from Server Fault
or by Spidfire
Published on 2013-11-07T12:09:09Z
Indexed on
2013/11/07
15:58 UTC
Read the original article
Hit count: 211
git
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.
© Server Fault or respective owner