Reputation: 2183
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
Reputation: 2183
Executed the following command which has fixed the issue:
git config --global core.filemode false
Reference:
Upvotes: 2