diff options
author | June McEnroe <june@causal.agency> | 2021-09-10 17:10:15 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-10 17:10:15 -0400 |
commit | 4c6cb6a661e970cf6951f627390f65b59ec8a7de (patch) | |
tree | bf9805b7fd76c50e141aa0f7f03e331b183ec0ff /bin/man1 | |
parent | Defer printing comment if line is blank or closing brace (diff) | |
download | src-4c6cb6a661e970cf6951f627390f65b59ec8a7de.tar.gz src-4c6cb6a661e970cf6951f627390f65b59ec8a7de.zip |
Add git comment --pretty option
Diffstat (limited to 'bin/man1')
-rw-r--r-- | bin/man1/git-comment.1 | 31 |
1 files changed, 27 insertions, 4 deletions
diff --git a/bin/man1/git-comment.1 b/bin/man1/git-comment.1 index a981f839..8e958f30 100644 --- a/bin/man1/git-comment.1 +++ b/bin/man1/git-comment.1 @@ -1,4 +1,4 @@ -.Dd September 8, 2021 +.Dd September 10, 2021 .Dt GIT-COMMENT 1 .Os . @@ -15,16 +15,26 @@ .Op Fl \-min-group Ar lines .Op Fl \-min-repeat Ar lines .Op Fl \-no-repeat +.Op Fl \-pretty Ar format .Op Ar options ... .Op Fl \- .Ar file . .Sh DESCRIPTION -Annotates the given file with comments -containing the commit messages -of the revisions +The +.Nm +command +adds comments to a file +showing the commit messages which last modified each group of lines. +By default only commit messages with bodies +and which modified groups of at least 2 lines +are added. +Each comment contains +the abbreviated commit hash +and the commit summary, +followed by the commit body. . .Pp .Nm @@ -75,6 +85,16 @@ The default is 30 lines. . .It Fl \-no-repeat Avoid repeating comments entirely. +. +.It Fl \-pretty Ar format +Set the pretty-print format +to use for commit messages. +The default is the value of +.Cm comment.pretty +or +.Ql format:%h\ %s%n%n%-b . +See +.Xr git-show 1 . .El . .Sh EXAMPLES @@ -92,3 +112,6 @@ Add as many comments as possible: .Bd -literal -offset indent git comment --all --min-group 1 --min-repeat 1 .Ed +. +.Sh SEE ALSO +.Xr git-blame 1 |