I want to display only a limited number of characters (say the first 100 characters) of the commit message in git log
Currently, I used git log --oneline but this displays the first line of the message. This can be a very long line if there is no new-line-characters between lines in the message. This makes my git log ugly and not easily readable.
How can I do this?
If this is not possible to display a limited number of characters, can I display the real first line of the message, I mean if there is no break between it and the second line in the message?