Reputation: 514
I working on a cms project and using a open source cms that hosted on github , how can I fetch the latest commit remotely to my working copy without overwrite some of my local setting ? example my database setting etc ?
Upvotes: 3
Views: 1335
Reputation: 31705
It's usually best to remove those files from the repo and add them to your .gitignore. You can then make the app gracefully handle missing configs by generating a default file. Failing that, you can provide an "example" config file for the user to copy and edit.
Upvotes: 1
Reputation: 1324537
I always recommend a filter driver with:
See "How to keep different content of one file in my local and github repository?" for more details.
Upvotes: 2