I have a project in which I have to change the mode of files (chmod) to 777 while developing, but which should not change in the main repo.

git picks up on chmod -R 777 . and marks all files as changed. Is there a way to make git ignore mode changes that have been made to files?

link|improve this question
feedback

4 Answers

up vote 310 down vote accepted

Try:

git config core.filemode false

From git-config(1):

   core.fileMode
       If false, the executable bit differences between the index and the
       working copy are ignored; useful on broken filesystems like FAT.
       See git-update-index(1). True by default.
link|improve this answer
1  
Thanks a bunch Greg. – Marcus Westin Oct 16 '09 at 22:17
Up-vote for you and OP. Oh god that just saved me headaches-o-plenty from managing this repository. – Dmitriy Likhten Apr 2 '10 at 1:24
71  
Today I couldn't recall exactly how to do this, searched Google, and found my own answer from last year as the top hit. Stack Overflow rocks. – Greg Hewgill May 27 '10 at 8:25
1  
lol ya it sure does =] – erikvold Dec 10 '10 at 18:14
3  
Yeah I always get this result when I Google "git ignore filemode". – mattalexx Jul 14 '11 at 20:03
feedback

undo mode change in working tree:

git diff --summary | grep --color 'mode change 100755 => 100644' | cut -d' ' -f7- | xargs -d'\n' chmod +x
git diff --summary | grep --color 'mode change 100644 => 100755' | cut -d' ' -f7- | xargs -d'\n' chmod -x

Or in mingw-git

git diff --summary | grep  'mode change 100755 => 100644' | cut -d' ' -f7- | xargs -e'\n' chmod +x
git diff --summary | grep  'mode change 100644 => 100755' | cut -d' ' -f7- | xargs -e'\n' chmod -x
link|improve this answer
Woa! Beaufitul! – Marcus Westin Jan 18 '10 at 16:08
Thanks, you saved my day. :) – TNunes Sep 5 '10 at 17:49
Kickass. Thanks. – Marco Dec 13 '10 at 22:47
7  
On OS X Lion, omit the -d'\n' part from xargs as this is an illegal argument (and not needed). – Pascal Jun 16 '11 at 20:07
3  
You can ignore any errors about "chmod: missing operand after `+x'" – Casey Watson Jul 8 '11 at 22:03
show 2 more comments
feedback

Adding to Greg Hewgill answer (of using core.fileMode config variable):

You can use --chmod=(-|+)x option of git update-index (low-level version of "git add") to change execute permissions in the index, from where it would be picked up if you use "git commit" (and not "git commit -a").

link|improve this answer
feedback

If you want to set this option for all of your repos, use the --global option.

git config --global core.filemode false

if you run it without the --global option and your working directory is not a repo, you'll get

error: could not lock config file .git/config: No such file or directory
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.