user1050619
user1050619

Reputation: 20916

GIT diff does not show any difference

I'm using GIT and when I issue - git status, I get a list of files..

Im trying to find the difference for one of the file using

git diff file1.py

but just get the following,

old mode 100644
new mode 100755

Why doesn't it show any difference?

Upvotes: 0

Views: 67

Answers (1)

ismail
ismail

Reputation: 47672

Because only file mode has changed and nothing else.

Upvotes: 1

Related Questions