Answers for "git diff without change mode"

0

git diff without change mode

git diff --summary | grep --color 'mode change 100755 => 100644' | cut -d' ' -f7- | xargs -d'\n' chmod +x
git diff --summary | grep --color 'mode change 100644 => 100755' | cut -d' ' -f7- | xargs -d'\n' chmod -x
Posted by: Guest on October-08-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language