-
-
Save deltorosalazar/6bad400a6d356332a513dfa74983da7b to your computer and use it in GitHub Desktop.
Make Git ignore file mode changes
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
git config core.fileMode false | |
find . -type d -exec chmod a+rwx {} \; # Make folders traversable and read/write | |
find . -type f -exec chmod a+rw {} \; # Make files read/write | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment