man git-log
in --name-status
paragraph refers to --diff-filter
, which, in turn, says that T
is "Changed", and M
is "Modified".
man git-diff
says
T: change in the type of the file.
I created a test repo.
M
.D
and A
.M
again (I know that git evaluates file types on the fly, but it was worth trying).So what does T
"Changed" mean there?
M
means that the content of the file has been M
odified.
T
means that the T
ype of the file has been changed, e.g. it used to be a regular file, but has been changed into a symbolic link, etc.