View permissions change in Git -


before commit files, how can see file permission changes files? have files git status says had changed , should added commit git diff doesn't show anything. thanks

well, since question has been edited ask different, here's different answer:

git status -v list node changes diffs. can filter down mode changes running through grep context filter: git status -v | grep '^old mode' -c 1 (sample result below)

diff --git a/matrix.cc b/matrix.cc old mode 100644 new mode 100755 

Comments

Popular posts from this blog

linux - Mailx and Gmail nss config dir -

c# - Is it possible to remove an existing registration from Autofac container builder? -

php - Mysql PK and FK char(36) vs int(10) -