Reading this, I was able to configure both globally and locally my fileMode
config to false.
However, when I git clone
, git keeps initializing the projects with local config forced to fileMode true
, so that it overrides my global false
. As a consequence I have, for every project, to either remove the local config or set it to false
manually, which entirely lose the point of having a global config.
How can I prevent git from setting, by default, on every project, this config locally? Is that driven by another config variable? By the server?
core.filemode
when it creates a new repository". And there is realy no way at all to configure the fact that it sets that fileMode ? =/ – Rintoul