I have two git log aliases: one to show --name-status :
... | A path/to/yourfile.c | M path/to/myfile.c | M path/to/my/otherfile.c ...
and one to show --stat :
... | path/to/yourfile.c | 2 ++ | path/to/myfile.c | 2 +- | path/to/my/otherfile.c | 27 +++++----- ...
Is it possible to combine the two?
... | A path/to/yourfile.c | 2 ++ | M path/to/myfile.c | 2 +- | M path/to/my/otherfile.c | 27 +++++----- ...
I like the --stat review, but it does not tell me whether files have been added or deleted; they were just somehow changed.
(When two command line flags are combined, --stat ignored.)
ellotheth
source share