চেষ্টা করুন:
git config core.fileMode false
থেকে Git-কনফিগ (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
হয়েছে।
সতর্কতা
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
করেন তবে খুব বিরল পরিবেশ ব্যতীত আপনাকে কখনও ব্যবহারের প্রয়োজন হবে না ।