मेरे पास एक CodeIgniter साइट में कई फाइलें हैं जिन्हें मैं रेपो में रखना चाहता हूं, लेकिन किसी भी बदलाव को ट्रैक नहीं कर सकता।
उदाहरण के लिए, मैं इस फ्रेमवर्क की एक नई स्थापना को एक नए ग्राहक को तैनात करता हूं, मैं चाहता हूं कि निम्नलिखित फाइलें डाउनलोड की जाएं (उनके पास डिफ़ॉल्ट मान CHANGEME हैं) और मुझे सिर्फ इस ग्राहक (डेटाबेस क्रेडेंशियल्स, ईमेल पता जानकारी) के लिए विशिष्ट परिवर्तन करना होगा, कस्टम सीएसएस)।
// the production config files i want the files but they need to be updated to specific client needs
application/config/production/config.php
application/config/production/database.php
application/config/production/tank_auth.php
// index page, defines the environment (production|development)
/index.php
// all of the css/js cache (keep the folder but not the contents)
/assets/cache/*
// production user based styling (color, fonts etc) needs to be updated specific to client needs
/assets/frontend/css/user/frontend-user.css
वर्तमान में अगर मैं चला
git clone git@github.com:user123/myRepo.git httpdocs
और फिर ऊपर की फ़ाइलों को संपादित करें, सब बहुत अच्छा है। जब तक मैं एक हॉटफ़िक्स या पैच जारी नहीं करता और चलाता हूँ git pull
। मेरे सभी परिवर्तन तब अधिलेखित कर दिए गए हैं।