Skip to content

Instantly share code, notes, and snippets.

View liitfr's full-sized avatar

Mathias Hoffmann liitfr

View GitHub Profile

Keybase proof

I hereby claim:

  • I am liitfr on github.
  • I am liitfr (https://keybase.io/liitfr) on keybase.
  • I have a public key ASBh5kRP1YE1rAuck4PHJMqUow63N7-LSVouzv_XIQsQnwo

To claim this, I am signing this object:

@liitfr
liitfr / README.md
Last active September 29, 2025 09:56
[how to revert 100644 → 100755 commits ?] #git #chmod

how to revert 100644 → 100755 commits

  • on your repo's root, run : find . -type f | xargs chmod -x
  • commit this change on files : commit -n -m 'fix: files permission from 100755 to 100644'
  • then with vim .git/config, set filemode option to false
[core]
        filemode = false