Git keeps track of filepermission and exposes permission changes when creating patches using git diff -p. So all we need is:
- create a patch that includes only the permission changes
- reverse the permission changes
- 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.