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 git checkout. All the file permissions are different than what git thinks they should be therefore they all show up as modified.

Without touching the content of the files (just want to modify the permissions) how do I set all the files permissions to what git thinks they should be?

share|improve this question

5 Answers

up vote 60 down vote accepted

Git keeps track of filepermission and exposes permission changes when creating patches using git diff -p. So all we need is:

  1. create a patch that includes only the permission changes
  2. reverse the permission changes
  3. apply the patch to our working copy

As a one-liner:

git diff -p \
    | grep -E '^(diff|old mode|new mode)' \
    | sed -e 's/^old/NEW/;s/^new/old/;s/^NEW/new/' \
    | git apply

you can also add it as an alias to your git config...

git config --global --add alias.permission-reset '!git diff -p | grep -E "^(diff|old mode|new mode)" | sed -e "s/^old/NEW/;s/^new/old/;s/^NEW/new/" | git apply'

...and you can invoke it via:

git permission-reset

Note, if you shell is bash, make sure to use ' instead of " quotes around the !git, otherwise it gets substituted with the last git command you ran.

share|improve this answer
Wow, nice work, thank you! – Dale Forester Dec 11 '10 at 19:18
I'm in OS X, this is not working. I've identified the problem is in the git apply. It doesn't apply the file permissions changes. – chico Aug 28 '12 at 21:36
2  
Oh, it worked, I was trying to apply from a directory different than the repository root. git apply only works there. – chico Aug 28 '12 at 22:06

Try git config core.filemode false

From the git config man page:

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

The default is true, except git-clone(1) or git-init(1) will probe and set core.fileMode false if appropriate when the repository is created.

share|improve this answer
Thanks, this is what I ended up doing. Very used to cvs not tracking permissions so this works. – Dale Forester Mar 26 '10 at 14:39
1  
@shovas: I am glad this helped. I experienced a similar issue when sharing repos between Linux and Windows. BTW: if this answered your question, please mark the response as correct. – Tim Henigan Mar 26 '10 at 16:50

Git doesn't store file permissions other than executable scripts. Consider using something like git-cache-meta to save file ownership and permissions.

share|improve this answer
Sorry, but this is incorrect. Git does, indeed, track permissions. – Will Apr 5 at 19:24

You could also try a pre/post checkout hook might do the trick.

share|improve this answer

The easiest thing to do is to just change the permissions back. As @kroger noted git only tracks executable bits. So you probably just need to run chmod -x filename to fix it (or +x if that's what's needed.

share|improve this answer

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.