How to output git log with the first line only?
Have you tried this? git log –oneline It’s an alias for git log –pretty=oneline –abbrev-commit, and displays the “short sha” and “short description”, for example: 9bee8857 Write more code 831fdd6e Write some code Second line of message The problem is that you are missing an empty line after the first line of your commit message. … Read more