How to wrap git commit comments?

后端 未结 15 1950
野性不改
野性不改 2020-12-01 01:01

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

相关标签:
15条回答
  • 2020-12-01 01:25

    Using this format made my life happier:

    log --pretty=format:\"%w(80,1,41)%h - %an, %ar : %s\"
    

    Since the fields in the output ahead of the commit message totaled about 39 characters for most of my commits, it makes reading a lot easier.

    0 讨论(0)
  • 2020-12-01 01:26

    Mentioned in the previous answer is that the default pager (often 'less') is responsible for wrapping and by default it generally chops long lines.

    To modify this without changing your commit messages (less and bash example):

    $ echo $LESS
    -FRSX
    

    This was what I had by default, now to overwrite the LESS environment variable.

    echo "LESS=-FRX;export LESS" >> ~/.bash_profile
    source ~/.bash_profile
    
    0 讨论(0)
  • 2020-12-01 01:27

    Edit 2011: the other answers (upvoted) highlight the possibility to modify the options less, the default pager used by git.
    The remark at the end of my answer still stands: even if you can see long commit message, that doesn't means that other tools having to deal with said (long) message will be able to process them.


    Original answer (January 2010) about commit message format policy:

    According to this blog, since git log does not do any kind of wrapping, you need to format your comment with an appropriate line length

    • git log doesn't do any special special wrapping of the commit messages.
      With the default pager of less -S, this means your paragraphs flow far off the edge of the screen, making them difficult to read.
      On an 80 column terminal, if we subtract 4 columns for the indent on the left and 4 more for symmetry on the right, we're left with 72 columns.
    • git format-patch --stdout converts a series of commits to a series of emails, using the messages for the message body.
      Good email netiquette dictates we wrap our plain text emails such that there's room for a few levels of nested reply indicators without overflow in an 80 column terminal.

    As said here:

    In general, use an editor to create your commit messages rather than passing them on the command line. The format should be:

    • A hard wrap at 72 characters
    • A single, short, summary of the commit
    • Followed by a single blank line
    • Followed by supporting details

    All sources (including GitPro book, which goes for 50 characters for the first line, as Jörg W Mittag comments) insist on the necessity to wrap yourself the comment, certainly because, even if Git was able to deal with long lines, other tools in the processing chain (email, patches, ...) may not.

    0 讨论(0)
提交回复
热议问题