Skip to content

Instantly share code, notes, and snippets.

@edwardstock
Created September 13, 2018 17:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save edwardstock/4ee385f172db4e1917e71b86e76f8949 to your computer and use it in GitHub Desktop.
Save edwardstock/4ee385f172db4e1917e71b86e76f8949 to your computer and use it in GitHub Desktop.
GIT revert file mode changes
#!/usr/bin/env bash
cd $1
git diff -p -R --no-color | grep -E "^(diff|(old|new) mode)" --color=never | git apply
## add git alias with name "permission-reset"
git config --global --add alias.permission-reset '!git diff -p -R --no-color | grep -E "^(diff|(old|new) mode)" --color=never | git apply'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment