4

Resembles to

  1. How do I make Git ignore file mode (chmod) changes?
  2. How do I remove files saying "old mode 100755 new mode 100644" from unstaged changes in Git?

but is most likely a different problem.

System is win7 x64.

The problem

Although filemode is false, msysgit keeps keeps seeing changes with deleted file mode 100644 or new file mode 100644 although the filemode is set to false:

[core]
    filemode = false

According to egit there are no changes. I can commit from msysgit, but that makes egit think there are changes, and committing amend from egit exits with

'Committing changes' has encountered a problem. An internal error occured. No changes.

I don't understand this mess, since filemode is clearly set to false...

I don't care about filemodes but want to use egit and msysgit.
How do i get out of this trap?

Community
  • 1
  • 1
Exception e
  • 1,864
  • 3
  • 19
  • 33

1 Answers1

1

Somehow i was able to get rid of this problem by repeatedly amend commiting from both git-gui and eclipse egit. I also staged the unstaged file mode changes before making such commits.

Sorry, i can't make this answer more satisficing. Hope this helps someone.

Exception e
  • 1,864
  • 3
  • 19
  • 33