I’m trying to keep my static files in a separate branch so that I can keep them from merging into my master brach (on Heroku, your application’s slug needs to stay small). I don’t want to ignore my static files, because I want to keep them inside my “devel” branch.
Ideally I’d like to keep test.db blank and my entire public folder blank in the master branch.
So, can I create an ‘overlay’ onto a branch? Can I prevent certain files/directories from merging into my master branch?
You could define those same static files on your master branch but:
Since that .gitattribute would not be define on other branches, the merge of those files would proceed normally.
The idea is to define a .gitattributes file in the directory of those static files on the master branch with the following content:
Those three files will always keep their local content (which is empty on master) when merging to master.
You will have to define a merge driver (here called “keepmine”). See the linked question for that script.