උත්සාහ කරන්න:
git config core.fileMode false
සිට GIT-config (1) :
core.fileMode
Tells Git if the executable bit of files in the working tree
is to be honored.
Some filesystems lose the executable bit when a file that is
marked as executable is checked out, or checks out a
non-executable file with executable bit on. git-clone(1)
or git-init(1) probe the filesystem to see if it handles the
executable bit correctly and this variable is automatically
set as necessary.
A repository, however, may be on a filesystem that handles
the filemode correctly, and this variable is set to true when
created, but later may be made accessible from another
environment that loses the filemode (e.g. exporting ext4
via CIFS mount, visiting a Cygwin created repository with Git
for Windows or Eclipse). In such a case it may be necessary
to set this variable to false. See git-update-index(1).
The default is true (when core.filemode is not specified
in the config file).
මෙම -c
ධජය එක වරක් විධාන සඳහා මෙම විකල්පය නියම කිරීම සඳහා භාවිතා කල හැක:
git -c core.fileMode=false diff
හා --global
ධජය එය පරිශීලක දී ලොගින් වී සඳහා සැකසුම් හැසිරීම විය වනු ඇත.
git config --global core.fileMode false
ගෝලීය සැකසුමෙහි වෙනස්වීම් පවත්නා ගබඩාවලට අදාළ නොවේ. මීට අමතරව, git clone
සහ git init
සුවිශේෂව සකස් core.fileMode
කිරීමට true
සාකච්ඡා ලෙස ප්රති config දී පරිගණක ක්රිඩාවට සමාන මත එක්කෝ කොබැඳි නැත්නම් ස්ථානීකව නොපවතියි ඉක්මවනු Git ගෝලීය core.fileMode බොරු
අවවාදයයි
core.fileMode
හොඳම පුහුණුව නොවන අතර එය ප්රවේශමෙන් භාවිතා කළ යුතුය. මෙම සිටුවම මඟින් ක්රියාත්මක කළ හැකි බිට් මාදිලිය පමණක් ආවරණය වන අතර කිසි විටෙක කියවීම / ලිවීම නොකෙරේ. බොහෝ අවස්ථාවන්හීදී ඔබට මෙම සැකසුම අවශ්ය යැයි ඔබ සිතන්නේ ඔබ එවැනි දෙයක් කළ chmod -R 777
නිසා ඔබේ ගොනු සියල්ලම ක්රියාත්මක කළ හැකි බැවිනි. නමුත් බොහෝ ව්යාපෘති වලදී බොහෝ ලිපිගොනු අවශ්ය නොවන අතර ආරක්ෂක හේතූන් මත ක්රියාත්මක කළ යුතු නොවේ .
මෙවැනි තත්වයක් විසඳීම සඳහා සුදුසුම ක්රමය වන්නේ ෆෝල්ඩරය සහ ගොනු අවසරය වෙන වෙනම හැසිරවීමයි.
find . -type d -exec chmod a+rwx {} \; # Make folders traversable and read/write
find . -type f -exec chmod a+rw {} \; # Make files read/write
ඔබ එය කරන්නේ නම්, core.fileMode
ඉතා දුර්ලභ පරිසරයක හැර , ඔබට කිසි විටෙක භාවිතා කිරීමට අවශ්ය නොවේ .