I run git log
command (usually with more options, irrelevant here) and then quit with q
. However, after I recently installed zsh plugins to display the last command return code, I discovered that this command exits with a non-zero return code.
$ git log
$ echo $?
141
Why is this happening, is this a sign of any real underlying problem and how can I fix it?