就像SO上這個問題描述的場景:http://stackoverflow.com/questions/928646/how-do-i-tell-git-to-always-select-my-local-version-for-conflicted-merges -on-a-sp
有兩個分支,每個分支使用不同的配置,例如:
config.txt (on release branch):
database = 10.9.8.7
config.txt (on develop branch):
database = 192.168.0.1
當需要把develop分支的功能合併到release分支時,不希望config檔被合併;
有以下解決方案:
不知道大家有沒什麼建議?
參考:http://stackoverflow.com/questions/928646/how-do-i-tell-git-to-always-select-my-local-version-for-conflicted-merges-on-a-sp
http://stackoverflow.com/questions/2250040/using-github-to-host-public-git-repositories-whilst-ensuring-that-sensitive-data#
http://blog.miniasp.com/post/2014/12/23/Git-Advanced-Assume-Unchanged-Skip-worktree.aspx
環境不同的設定檔的話放在不同的檔案比較容易維護
程式碼裡面做環境判斷(常見的方式有IP、hostname、環境變數等)分別讀取不同的設定
進一步的方案是專門有配置中心負責下發配置,有駐守精靈負責找配置中心拉配置、快取配置、配合中心更新配置等
總之個人覺得透過分支不同來維護不同環境的配置事倍功半…如果再加上測試環境、預發布環境,甚至可能還有單元測試環境、沙盒環境等等,3份以上不同配置如果還是用分支維護的話基本上就崩潰了吧…一定要搞的話推薦模仿
phpunit.xml.dist
的形式,gitignore掉config.txt
,然后维护正式的config.txt.dist
,代码里优先读config.txt
,然后读config.txt.dist