You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-1Lines changed: 4 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -24,10 +24,13 @@ But the comparison isn't quite as strict, generally leading to a shorter list of
24
24
25
25
### Options
26
26
27
-
*`--simple` or `-s`: Don't print full markdown output, good for console printing without the additional fluff.
28
27
*`--group` or `-g`: Group commits by prefix, this uses the part of the commit summary that is usually used in Node.js core to indicate subsystem for example. Groups are made up of numbers, letters, `,` and `-`, followed by a `:`.
29
28
*`--exclude-label`: Exclude any commits from the list that come from a GitHub pull request with the given label. Multiple `--exclude-label` options may be provided, they will also be split by `,`. e.g. `--exclude-label=semver-major,meta`.
30
29
*`--patch-only`: An alias for `--exclude-label=semver-major,semver-minor`.
30
+
*`--format`: Dictates what formatting the output will have. Possible options are: `simple`, `sha`. The default is to print markdown-formatted output.
31
+
-`simple`: Don't print full markdown output, good for console printing without the additional fluff.
32
+
-`sha`: Print only the 10-character truncated commit shasums. Good for piping though additional tooling, such as `xargs git cherry-pick` for applying commits.
33
+
*`--simple` or `-s`: An alias for `--format=simple`.
0 commit comments