Prevent files from being overwritten

Hello :wave:

For my projects, I like to use GitLab and pipelines so I can test the code or find possible incorrect formatting issues.

I noticed that when using box install changes to server.json or .cfformat.json are overwritten with the original information from Forgebox. Can the overwriting be prevented or how did you solve this in your case?

This is what my server.json looks like, which is under version control:

{
    "force": true,
    "openBrowser": false,
    "trayicon":" false",
    "web":{
        "rewrites":{
            "enable":true
        }
    }
}

And this is what it looks like when I run box install:

{
    "web":{
        "rewrites":{
            "enable":true
        }
    }
}

Any advice would be greatly appreciated. Thanks.