Some time ago I worked in a project developed by several people. One of the people, consciously or not, changed the chmod some files. When the changes push into the repository, each time, another download the code from there cause in start, a many files was markes as "changed". I lost a lot of time to find reason.
Now when taking the repo i each time write in terminal
git config core.fileMode false
to ignore the change file permissions. I know that i can set that in global git config file, but i would make something more. I would like to have this option set as default in project repository and everyone who download this repo, will be set git config to ignore files permission.
Have any idea how reach that ?