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

Make Git ignore files that already exist in the repository

09/2011 // Category: Git Version Control

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)]

pagetop