I am wondering why git log
only shows lines added/deleted, but no modified lines.
For example,I type
git log commit1..commit2 --stat
the result is
commit 5b5h5.........
Author: cc <cc@mail.com>
Date: Wed May 28 13:36:34 2014 +0800
some commit message
code/src/com/bocom/..../file
1 files changed, 1 insertion(+), 1 deletion(-)
But in fact,I just modified something in the same line, not deleting or adding any new line.It is strange.
So does anyone know some git command to get the correct modified lines including (added ,deleted,modified) ?