Prevent Git from pickung up changes in the mode of files
10/2011 // Category: git
Prevent GIT from pickung up changes in the mode of files (chmod)
git config core.filemode false
Prevent GIT from pickung up changes in the mode of files (chmod)
git config core.filemode false
Adding files to .gitignore that are already tracked does not work. In stead, this command can be used:
git update-index --assume-unchanged [filename(s)]