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
Post a Comment