2

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?

JSS
  • 2,061
  • 1
  • 20
  • 26

1 Answers1

2

Executed the following command which has fixed the issue:

git config --global core.filemode false

Reference:

JSS
  • 2,061
  • 1
  • 20
  • 26