JSS
JSS

Reputation: 2183

IntelliJ git checkin setting file mode to +X

IntelliJ Version: Ultimate 2018.3

Every time I checkin files to git repo, I notice that all the files permission is changed to executable (+x).

I tried running git config core.fileMode false but that has not helped.

What settings can I apply so it doesn't happen?

Upvotes: 2

Views: 2045

Answers (1)

JSS
JSS

Reputation: 2183

Executed the following command which has fixed the issue:

git config --global core.filemode false

Reference:

Upvotes: 2

Related Questions