I would like to get this kind of output with git command line:
bcfd649de8850e3bfc9584eb12be8fe136ca6985 3 files changed, 8 insertions(+), 1 deletion(-)
I'm currently using git log --shortstat --reverse --pretty=oneline
, but it's actually not a single line and the comment is useless to me:
bcfd649de8850e3bfc9584eb12be8fe136ca6985 Added ActionController#cookies[] as a reader for @cookies that'll return the value of the cookie instead of
3 files changed, 8 insertions(+), 1 deletions(-)
Is there any way to do it?