How do I make Git ignore file mode (chmod) changes?

918    Asked by MatsudaHara in Data Science , Asked on Jul 15, 2021

I have a project in which I have to change the mode of files with chmod to 777 while developing, but which should not change in the main repo.

Git picks up on chmod -R 777 . and marks all files as changed. Is there a way to make Git ignore mode changes that have been made to files?
Answered by Neelam Katherine

To solve git ignore file permissions, you can try the following command

    git config core.fileMode false

There are several options like -c and --global

-c option is used to set this option for one-off command

    git config -c core.fileMode=false diff

And --global flag will make it be the default behavior for the logged in user.

    git config --global core.fileMode false

Changes in the global setting won't be applied to existing repositories. You have to either clone the repository again or execute git init. It will not overwrite things that are already there.

Warning

core.fileMode is not the best practice and should be used carefully. This setting only covers the executable bit of mode and never the read/write bits. In many cases you think you need this setting because you did something like chmod -R 777, making all your files executable. But in most projects, most files don't need and should not be executable for security reasons.

The proper way to solve this kind of situation is to handle folder and file permission like this

find. -type d -exec chmod a+rwx {} ; # Make folders traversable and read/write

find. -type f -exec chmod a+rw {} ; # Make files read/write

If you follow this there is less chance of using core.fileMode.



Your Answer

Interviews

Parent Categories