Answers for "Updating and committing only a file's permissions using git version control"

0

Updating and committing only a file's permissions using git version control

git diff -p -R --no-ext-diff --no-color \
    | grep -E "^(diff|(old|new) mode)" --color=never  \
    | git apply
Posted by: Guest on April-14-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language