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

I've read through a few questions regarding file permissions in git and I'm still a bit confused. I've got a repo on github forked from another. Post merge, they should be identical. However:

$ git diff --summary origin/epsilon master/epsilon
 mode change 100644 => 100755 ants/dist/sample_bots/csharp/compile.sh
 mode change 100644 => 100755 ants/dist/starter_bots/coffeescript/MyBot.coffee
 mode change 100644 => 100755 ants/dist/starter_bots/coffeescript/ants.coffee
 mode change 100644 => 100755 ants/util/block_test.sh
 mode change 100644 => 100755 manager/mass_skill_update.py
 mode change 100644 => 100755 worker/jailguard.py
 mode change 100644 => 100755 worker/release_stale_jails.py
 mode change 100644 => 100755 worker/start_worker.sh

I've tried changing file permissions, but it does not alter the diff results.

What should I do?

share|improve this question

3 Answers

From another question here on stackoverflow: How do I make git ignore mode changes (chmod)?

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
Thanks. I saw that too. Tried it and it made no difference. – Synesso Jun 25 '11 at 8:04
I had similar problems to the OP and couldn't pull changes no matter how hard I tried to reset. This did the trick for me. – Jo-Herman Haugholt Oct 13 '11 at 9:10
2  
[project]/.git/config may contain the same setting and will override ~/.gitconfig. If you're trying to set it globally, make sure it isn't being overridden locally. – Binary Phile Jan 31 at 19:56

I found the solution of how to change permissions (also) on Windows here: http://blog.lesc.se/2011/11/how-to-change-file-premissions-in-git.html

For example following command adds user execute permission to an arbitrary file:

git update-index --chmod=+x <file>
share|improve this answer
up vote 1 down vote accepted

I fixed it by changing the file permissions in Ubuntu, commit, push and all OK. Seems it just wouldn't work with msysgit on Windows/NTFS.

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.