Linux
VCS
<p>To globally disable git from watching changes to executable permissions use:</p>
<pre><code>git config --global core.filemode false
</code></pre>
<p>Of course to just revert executable permissions on folders and subfolders:</p>
<pre><code>find . -type d -exec chmod a+rwx {} \;
find . -type f -exec chmod a+rw {} \;
</code></pre>
<p>From: https: //stackoverflow.com/questions/1580596/how-do-i-make-git-ignore-file-mode-chmod-changes</p>