Reputation: 8361
I'd like to view commit history in the console that:
I've tried git log --after="May 13" --before="May 15" --pretty=oneline
but it does not give the author of the commit.
Upvotes: 2
Views: 110
Reputation: 312116
You could do the formatting yourself with the --format
flag. E.g.:
git log --after="May 13" --before="May 15" --format="%H %aN> %s"
Upvotes: 4