प्रयत्न:
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
रेपो कॉन्फिग के रूप में चर्चा की क्लोन पर 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
बहुत दुर्लभ वातावरण को छोड़कर, कभी भी उपयोग करने की आवश्यकता नहीं होगी ।