Is there a way to wrap git commit comments (when viewed via git log), so they are not cut off at the end of the line? It seems like there should be a pretty sim
git log
If nano is your preferred editor, then you can set up git to use nano with automatic wrapping at e.g. 72 characters:
git config --global core.editor "nano -r 72"