Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question

4 Answers

up vote 675 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.
share|improve this answer
2  
Thanks a bunch Greg. – Marcus Westin Oct 16 '09 at 22:17
214  
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
4  
Yeah I always get this result when I Google "git ignore filemode". – mattalexx Jul 14 '11 at 20:03
23  
If you do git config --global core.filemode false you'll only need to do this once for all repos. – Greg Oct 21 '12 at 20:05
show 10 more comments

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
share|improve this answer
1  
Woa! Beaufitul! – Marcus Westin Jan 18 '10 at 16:08
Thanks, you saved my day. :) – TNunes Sep 5 '10 at 17:49
14  
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
4  
You can ignore any errors about "chmod: missing operand after `+x'" – Casey Watson Jul 8 '11 at 22:03
1  
is this up to date? I get 'chmod: too few arguments' in mingw – Hamilton Verissimo Mar 23 '12 at 18:18
show 3 more comments

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
share|improve this answer
Does not work for me on git version 1.7.9.6 (Apple Git-31.1) – Filip Kunc Jan 12 at 13:39
2  
Looks like later GIT uses --add, as in git config --add --global core.filemode false – mgaert Apr 4 at 10:56

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").

share|improve this answer
This should have been edited into Greg Hewgill's answer rather than added as a separate answer, thus creating one supreme answer with a single unambiguous representation. – Greg Jun 13 '12 at 12:37
@Greg: One needs to have enough points to edit not own answer; I think I didn't have enough for editing permissions at that time. – Jakub NarÄ™bski Jun 15 '12 at 16:34

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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